Modifed PPC archscript to close bug #84648 and also to make the PPC archscript produc...
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 16 Mar 2005 13:46:54 +0000 (13:46 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 16 Mar 2005 13:46:54 +0000 (13:46 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@565 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
livecd/runscript/ppc-archscript.sh

index 8958154dee6197fd4caa2c5385a7228f429d9f0b..9a43496557c71c1840c12e855860cf825e4ff908 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 # ChangeLog for gentoo/src/catalyst 
 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.190 2005/03/09 20:03:12 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.191 2005/03/16 13:46:54 wolf31o2 Exp $
+
+  16 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+  livecd/runscript/ppc-archscript.sh:
+  Modifed PPC archscript to close bug #84648 and also to make the PPC
+  archscript produce multiple initrd files, like x86/amd64.
 
   09 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
   -livecd/cdtar/isolinux-2.11-cdtar.tar.bz2,
index 8b3d3a2827613e7f015d1394cf1a2df77c1bc1e6..355d420ecc4904ff76787d6be93ce1621b87a7f1 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/ppc-archscript.sh,v 1.8 2005/03/09 20:03:12 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/ppc-archscript.sh,v 1.9 2005/03/16 13:46:54 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -49,7 +49,7 @@ case $1 in
                        mv ${clst_cdroot_path}/boot/kernel* ${clst_cdroot_path}/boot/${x}
                        
                        # change initrd name from "initrd" to "gentoo.igz", for example
-                       mv ${clst_cdroot_path}/boot/initrd* ${clst_cdroot_path}/boot/initrd.img.gz
+                       mv ${clst_cdroot_path}/boot/initrd* ${clst_cdroot_path}/boot/${x}.igz
                done
        ;;
 
@@ -58,6 +58,6 @@ case $1 in
 
        iso)
                # The name of the iso should be retrieved from the specs.
-               mkisofs -J -r -netatalk -hfs -probe -map boot/map.hfs -part -no-desktop -hfs-volid "${iso_volume_id}" -hfs-bless ./boot -V "${iso_volume_id}" -o ${2} ${clst_cdroot_path}
+               mkisofs -J -r -netatalk -hfs -probe -map ${clst_cdroot_path}/boot/map.hfs -part -no-desktop -hfs-volid "${iso_volume_id}" -hfs-bless ${clst_cdroot_path}/boot -V "${iso_volume_id}" -o ${2} ${clst_cdroot_path}
        ;;
 esac