From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 Description of problem: On the boot.iso in FC5t1 in /etc/yaboot.conf the linux32 entry uses the 64bit ramdisk instead of the 32bit ramdisk. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. burn boot.iso 2. boot a 32bit ppc box like an RS/6000 43p-150 3. fails to load the network driver Additional info: This is easily fixed by making the following change in /etc/yaboot.conf: image=/ppc/ppc32/vmlinuz label=linux32 initrd=/ppc/ppc32/ramdisk.image.gz read-only ^^^^^
Oops. As Patrick says, ... --- anaconda-10.90.8/bootdisk/ppc/yaboot.conf.3264.orig +++ anaconda-10.90.8/bootdisk/ppc/yaboot.conf.3264 @@ -10,5 +10,5 @@ image=/ppc/ppc64/vmlinuz image=/ppc/ppc32/vmlinuz label=linux32 - initrd=/ppc/ppc64/ramdisk.image.gz + initrd=/ppc/ppc32/ramdisk.image.gz read-only
Oops, got confused by the various sed'ing of stuff in mk-images.ppc. Committed