eth0s/ports/core/linux/post-install
2020-07-02 23:33:24 +08:00

11 lines
214 B
Bash
Executable file

#!/bin/sh
if [ -f /lib/modules/KERNELVERSION ]; then
kver=$(cat /lib/modules/KERNELVERSION)
else
kver=$(file /boot/vmlinuz-lfs | cut -d ' ' -f9)
fi
mkinitramfs -q -k $kver -o /boot/initrd-lfs.img
depmod $kver