Skip to content

Commit 3af5cf2

Browse files
committed
iso boot = dd'ed iso boot with this commit alone
1 parent b862db9 commit 3af5cf2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

initrd/bin/kexec-parse-boot

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,16 @@ syslinux_entry() {
224224
state="search"
225225
;;
226226
*)
227-
kernel="${val#"$bootdir"}"
227+
#kernel="${val#"$bootdir"}"
228+
#DEBUG "val bootdir= ${val#"$bootdir"}"
229+
kernel="$val"
228230
DEBUG "kernel= $kernel"
229231
esac
230232
;;
231233
initrd* | INITRD* )
232-
initrd="${val#"$bootdir"}"
234+
#initrd="${val#"$bootdir"}"
235+
#DEBUG "val bootdir= ${val#"$bootdir"}"
236+
initrd="$val"
233237
DEBUG "initrd= $initrd"
234238
;;
235239
append* | APPEND* )

0 commit comments

Comments
 (0)