diff options
author | 2002-12-21 06:25:17 +0000 | |
---|---|---|
committer | 2002-12-21 06:25:17 +0000 | |
commit | 2f44119d9b9e2f7c6a490a0b7cd3d150b890b2d4 (patch) | |
tree | 07249eb20e13be6ec49ebe4f10d2b257af534e37 /sys-apps/yaboot | |
parent | added dual boot menu delay (diff) | |
download | historical-2f44119d9b9e2f7c6a490a0b7cd3d150b890b2d4.tar.gz historical-2f44119d9b9e2f7c6a490a0b7cd3d150b890b2d4.tar.bz2 historical-2f44119d9b9e2f7c6a490a0b7cd3d150b890b2d4.zip |
fix to not scan CDROM for dual boot partitions
Diffstat (limited to 'sys-apps/yaboot')
-rw-r--r-- | sys-apps/yaboot/files/yabootconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/yaboot/files/yabootconfig b/sys-apps/yaboot/files/yabootconfig index ccaca8529827..afe058e9221e 100644 --- a/sys-apps/yaboot/files/yabootconfig +++ b/sys-apps/yaboot/files/yabootconfig @@ -264,7 +264,7 @@ dualboot() for i in $DRIVELIST do - HFS=`mac-fdisk -l "/dev/$i" | grep '\<Apple_HFS\>' | cut -d" " -f1` + HFS=`mac-fdisk -l "/dev/$i" | grep '\<Apple_HFS\>' | grep -v "CDROM" | cut -d" " -f1` for h in $HFS do if [ !-x `hpmount -r $h` > /dev/null 2>&1 ] ; then |