Skip to content

Commit

Permalink
kexec-parse-boot: fix isolinux iso booting
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaurion committed Apr 17, 2023
1 parent 7ec658f commit 40872d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions initrd/bin/kexec-parse-boot
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,12 @@ syslinux_entry() {
state="search"
;;
*)
kernel="${val#"$bootdir"}"
kernel="$val"
DEBUG "kernel= $kernel"
esac
;;
initrd* | INITRD* )
initrd="${val#"$bootdir"}"
initrd="$val"
DEBUG "initrd= $initrd"
;;
append* | APPEND* )
Expand Down

0 comments on commit 40872d8

Please sign in to comment.