diff options
author | Daniel Ostrow <dostrow@gentoo.org> | 2005-10-08 23:32:22 +0000 |
---|---|---|
committer | Daniel Ostrow <dostrow@gentoo.org> | 2005-10-08 23:32:22 +0000 |
commit | ee3b821a20b2d0d72796583f60579836d488f747 (patch) | |
tree | 5bdd553f11faf90f29346e5b79e76277e22f67f9 /sys-boot/yaboot-static/files | |
parent | added net-analyzer/sancp:sguil (diff) | |
download | gentoo-2-ee3b821a20b2d0d72796583f60579836d488f747.tar.gz gentoo-2-ee3b821a20b2d0d72796583f60579836d488f747.tar.bz2 gentoo-2-ee3b821a20b2d0d72796583f60579836d488f747.zip |
Added patch for bug #103610
(Portage version: 2.0.53_rc4)
Diffstat (limited to 'sys-boot/yaboot-static/files')
-rw-r--r-- | sys-boot/yaboot-static/files/digest-yaboot-static-1.3.13-r1 | 1 | ||||
-rw-r--r-- | sys-boot/yaboot-static/files/ofpath_device-tree_check.patch | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/sys-boot/yaboot-static/files/digest-yaboot-static-1.3.13-r1 b/sys-boot/yaboot-static/files/digest-yaboot-static-1.3.13-r1 new file mode 100644 index 000000000000..441a514f8f31 --- /dev/null +++ b/sys-boot/yaboot-static/files/digest-yaboot-static-1.3.13-r1 @@ -0,0 +1 @@ +MD5 45bde87b63528b572502579e137447a1 yaboot-static-1.3.13.tbz2 148488 diff --git a/sys-boot/yaboot-static/files/ofpath_device-tree_check.patch b/sys-boot/yaboot-static/files/ofpath_device-tree_check.patch new file mode 100644 index 000000000000..e3f02cf4cc46 --- /dev/null +++ b/sys-boot/yaboot-static/files/ofpath_device-tree_check.patch @@ -0,0 +1,31 @@ +--- usr.orig/sbin/ofpath 2005-10-08 15:59:15.000000000 -0700 ++++ usr/sbin/ofpath 2005-10-08 16:21:35.000000000 -0700 +@@ -473,14 +473,6 @@ + { + case "$DEVNODE" in + sd*) +- if ls -l /proc/device-tree | grep -q ^lr ; then +- true +- else +- echo 1>&2 "$PRG: /proc/device-tree is broken. Do not use BootX to boot, use yaboot." +- echo 1>&2 "$PRG: The yaboot HOWTO can be found here: http://www.alaska.net/~erbenson/doc" +- return 1 +- fi +- + ## use common scsiinfo function to get info we need. + scsiinfo || return 1 + +@@ -715,13 +707,6 @@ + { + case "$DEVNODE" in + sd*) +- if ls -l /proc/device-tree | grep -q ^lr ; then +- true +- else +- echo 1>&2 "$PRG: /proc/device-tree is broken." +- return 1 +- fi +- + ## use common scsiinfo function to get info we need. + scsiinfo || return 1 + |