8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./functions
|
|
|
|
modules=$(ls /Rocky/modules/|grep -v .bak|grep -v .old)
|
|
mkTmpfstab.sh -f "$TARGET/etc/fstab" -t "/tmp/fstab"
|
|
mkinitrd "$TARGET"/boot/initrd.gz $modules --without-usb --without-multipath --fstab="/tmp/fstab" -f
|