From 3bcb86f2636df4192e87e6b58609ad6da0afdf56 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Tue, 22 Jan 2013 15:32:36 +0100 Subject: [PATCH] Make sure we don't override live-media-path if /lib/live/mount/medium/boot exists Otherwise live_media_path points to the wrong configuration in current Grml ISOs. --- templates/grub-pxelinux_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/grub-pxelinux_config b/templates/grub-pxelinux_config index c3e99f1..d2fb6e9 100644 --- a/templates/grub-pxelinux_config +++ b/templates/grub-pxelinux_config @@ -20,7 +20,7 @@ if grep -q live-media-path= /proc/cmdline 2>/dev/null ; then live_media_path_="live-media-path=$(awk -F live-media-path= '{print $2}' /proc/cmdline | awk '{print $1}')" fi -if [ ! -d /live/image/boot ] ; then +if [ ! -d /live/image/boot ] && [ ! -d /lib/live/mount/medium/boot ] ; then live_media_path_="live-media-path=/" fi -- 2.1.4