From: Chris Gianelloni Date: Mon, 7 Mar 2005 00:20:37 +0000 (+0000) Subject: Applying sparc32 patch from gustavoz. Replacing silo cdtar files with unified sparc3... X-Git-Tag: CATALYST_2_0_6_916~816 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1d437d55acdc33923d46b30e237e8dde26726f79;p=catalyst.git Applying sparc32 patch from gustavoz. Replacing silo cdtar files with unified sparc32/sparc64 cdtar. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@557 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 81f92946..1b0f7aa5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for gentoo/src/catalyst # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.182 2005/03/06 14:35:37 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.183 2005/03/07 00:20:37 wolf31o2 Exp $ + + 06 Mar 2005; Chris Gianelloni catalyst, + livecd/cdtar/silo-1.2.6-sparc-cdtar.tar.bz2, + -livecd/cdtar/silo-1.3.2-sparc64-cdtar.tar.bz2, + -livecd/cdtar/silo-1.4.4-sparc32-cdtar.tar.bz2, + livecd/runscript/sparc-archscript.sh: + Applying sparc32 patch from gustavoz. Replacing silo cdtar files with + unified sparc32/sparc64 cdtar. 06 Mar 2005; Chris Gianelloni livecd/runscript-support/livecdfs-update.sh, diff --git a/catalyst b/catalyst index 8d42b63d..ca2d9ff8 100755 --- a/catalyst +++ b/catalyst @@ -1,14 +1,14 @@ #!/usr/bin/python # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.64 2005/03/03 22:05:05 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.65 2005/03/07 00:20:37 wolf31o2 Exp $ # Maintained in full by John Davis import os,sys,imp,string,getopt __maintainer__="Chris Gianelloni " -__version__="1.1.6" +__version__="1.1.7_pre1" conf_values={} diff --git a/livecd/cdtar/silo-1.2.6-sparc-cdtar.tar.bz2 b/livecd/cdtar/silo-1.2.6-sparc-cdtar.tar.bz2 index d68ca13b..687f06cc 100644 Binary files a/livecd/cdtar/silo-1.2.6-sparc-cdtar.tar.bz2 and b/livecd/cdtar/silo-1.2.6-sparc-cdtar.tar.bz2 differ diff --git a/livecd/cdtar/silo-1.3.2-sparc64-cdtar.tar.bz2 b/livecd/cdtar/silo-1.3.2-sparc64-cdtar.tar.bz2 deleted file mode 100644 index deddf888..00000000 Binary files a/livecd/cdtar/silo-1.3.2-sparc64-cdtar.tar.bz2 and /dev/null differ diff --git a/livecd/cdtar/silo-1.4.4-sparc32-cdtar.tar.bz2 b/livecd/cdtar/silo-1.4.4-sparc32-cdtar.tar.bz2 deleted file mode 100644 index 84ae18c0..00000000 Binary files a/livecd/cdtar/silo-1.4.4-sparc32-cdtar.tar.bz2 and /dev/null differ diff --git a/livecd/runscript/sparc-archscript.sh b/livecd/runscript/sparc-archscript.sh index 7e92593f..4704ed34 100644 --- a/livecd/runscript/sparc-archscript.sh +++ b/livecd/runscript/sparc-archscript.sh @@ -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/sparc-archscript.sh,v 1.9 2005/03/03 22:36:08 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc-archscript.sh,v 1.10 2005/03/07 00:20:37 wolf31o2 Exp $ case $1 in kernel) @@ -80,8 +80,12 @@ case $1 in ;; iso) - # this is for the livecd-final target, and calls the proper - # command to build the iso file - mkisofs -J -R -l -o ${2} -G ${clst_cdroot_path}/boot/isofs.b -B ... ${clst_cdroot_path} || die "Cannot make ISO image" + # Old silo + patched mkisofs fubar magic + # Only silo 1.2.x seems to work for most hardware + # Seems silo 1.3.x+ breaks on newer machines + # when booting from CD (current as of silo 1.4.8) + mv ${clst_cdroot_path}/boot/mkisofs.sparc.fu /tmp + /tmp/mkisofs.sparc.fu -o ${2} -D -r -pad -quiet -S 'boot/cd.b' -B '/boot/second.b' -s '/boot/silo.conf' -abstract 'Gentoo Linux Sparc' -copyright 'Gentoo Foundation' -P 'Gentoo Linux Sparc' -p 'Gentoo Linux Sparc' -V 'Gentoo Linux Sparc 2005.0' -A 'Gentoo Linux Sparc' ${clst_cdroot_path} || die "Cannot make ISO image" + rm /tmp/mkisofs.sparc.fu ;; esac