]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* tests/partmap_test.in: Skip on ppc due to serious firmware bug.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 8 Jun 2012 21:02:37 +0000 (23:02 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 8 Jun 2012 21:02:37 +0000 (23:02 +0200)
ChangeLog
tests/partmap_test.in

index 40f58a42e0fadfb2f7327833145d7e1dfb9b06a4..7099e5de427224daa7977471de2665dee5ee5227 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-06-08  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * tests/partmap_test.in: Skip on ppc due to serious firmware bug.
+
 2012-06-08  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Fix wildcard escaping.
index bb2e8d6450c6067078a6afee4e6363423c7b037a..1eb2868b9cb5280a9998054de89fcbaece7df3d0 100644 (file)
@@ -59,6 +59,11 @@ case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
     mips-qemu_mips | mipsel-qemu_mips | i386-qemu | i386-multiboot | i386-coreboot)
        disk=ata0
        ;;
+    powerpc-ieee1275)
+       disk=ieee1275//pci@80000000/mac-io@4/ata-3@20000/disk@0
+       # QEMU firmware has bugs which prevent it from accessing hard disk.
+       exit 0
+       ;;
     *)
        disk=hd0
        ;;