diff --git a/operation/configure_bootloader_cnf.sh b/operation/configure_bootloader_cnf.sh index 4d43a32..953f85b 100755 --- a/operation/configure_bootloader_cnf.sh +++ b/operation/configure_bootloader_cnf.sh @@ -155,11 +155,11 @@ initrd $boot/initrd.gz title LINX Rocky Secure Operating System Version $OSVERSION with root but no cgroup kernel $root$boot/vmlinuz-root-nocgroup root=$root_dev $KPARAMETER linx-root-nocgroup -initrd $boot/initrd-nocgroup.gz +initrd $boot/initrd.gz title LINX Rocky Secure Operating System Version $OSVERSION without root but no cgroup kernel $root$boot/vmlinuz-root-n-nocgroup root=$root_dev $KPARAMETER linx-no-root-nocgroup -initrd $boot/initrd-nocgroup.gz +initrd $boot/initrd.gz EOF } diff --git a/operation/copy_kernels.sh b/operation/copy_kernels.sh index 9d685cb..6404485 100755 --- a/operation/copy_kernels.sh +++ b/operation/copy_kernels.sh @@ -49,11 +49,11 @@ main () exit 1 fi - info "copy $INITRD/initrd-full.gz to $TARGET/boot/initrd-full.gz" + info "copy $INITRD/initrd-full.gz to $TARGET/boot/initrd.gz" if [ -e "$INITRD/initrd-full.gz" ];then - cp "$INITRD/initrd-full.gz" "$TARGET/boot/initrd-full.gz" 2>>$DEV_LOG + cp "$INITRD/initrd-full.gz" "$TARGET/boot/initrd.gz" 2>>$DEV_LOG else - err "$INITRD/initrd.gz doesn't exist " + err "$INITRD/initrd-full.gz doesn't exist " exit 1 fi @@ -62,13 +62,6 @@ main () cp -r "$FIRMWARE" $TARGET/lib/ fi - info "runing makeinitrd" - if [ -e ./makeinitrd ];then - ./makeinitrd 2>>$DEV_LOG - else - err "makeinitrd doesn't exist " - exit 1 - fi ;; ia64) info "copy $KERNELS/* to /tmp/tmppoint"