We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b862db9 commit 3af5cf2Copy full SHA for 3af5cf2
initrd/bin/kexec-parse-boot
@@ -224,12 +224,16 @@ syslinux_entry() {
224
state="search"
225
;;
226
*)
227
- kernel="${val#"$bootdir"}"
+ #kernel="${val#"$bootdir"}"
228
+ #DEBUG "val bootdir= ${val#"$bootdir"}"
229
+ kernel="$val"
230
DEBUG "kernel= $kernel"
231
esac
232
233
initrd* | INITRD* )
- initrd="${val#"$bootdir"}"
234
+ #initrd="${val#"$bootdir"}"
235
236
+ initrd="$val"
237
DEBUG "initrd= $initrd"
238
239
append* | APPEND* )
0 commit comments