Skip to content

Commit

Permalink
iso boot = dd'ed iso boot with this commit alone
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaurion committed Apr 17, 2023
1 parent b862db9 commit 3af5cf2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions initrd/bin/kexec-parse-boot
Original file line number Diff line number Diff line change
Expand Up @@ -224,12 +224,16 @@ syslinux_entry() {
state="search"
;;
*)
kernel="${val#"$bootdir"}"
#kernel="${val#"$bootdir"}"
#DEBUG "val bootdir= ${val#"$bootdir"}"
kernel="$val"
DEBUG "kernel= $kernel"
esac
;;
initrd* | INITRD* )
initrd="${val#"$bootdir"}"
#initrd="${val#"$bootdir"}"
#DEBUG "val bootdir= ${val#"$bootdir"}"
initrd="$val"
DEBUG "initrd= $initrd"
;;
append* | APPEND* )
Expand Down

0 comments on commit 3af5cf2

Please sign in to comment.