diff --git a/ChangeLog b/ChangeLog index 13ab949..168ad69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,12 @@ # Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 21 Jun 2007; Chris Gianelloni + generic/initrd.scripts: + Change the check for /livecd when booting a CD to check for a file called + livecd, rather than just the existence of /livecd, which should keep it from + finding disks with a /livecd directory. + 21 Jun 2007; Chris Gianelloni gen_package.sh: Added a patch from Andrew Gaffney from bug #174188 to fix a problem with the System.map file copying that was previously diff --git a/generic/initrd.scripts b/generic/initrd.scripts index 209ab7d..0fd14e8 100644 --- a/generic/initrd.scripts +++ b/generic/initrd.scripts @@ -83,7 +83,7 @@ findcdmount() { if [ "$?" = '0' ] then # Check for a LiveCD - if [ -e ${NEW_ROOT}/mnt/cdrom/${SUBDIR}/livecd ] + if [ -f ${NEW_ROOT}/mnt/cdrom/${SUBDIR}/livecd ] then REAL_ROOT="${x}" break