# ChangeLog for gentoo/src/catalyst
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.52 2004/05/20 21:16:56 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.53 2004/05/22 00:42:59 zhen Exp $
+
+ 21 May 2004; John Davis <zhen@gentoo.org> arch/sparc.py, arch/sparc64.py,
+ livecd/runscript/sparc-archscript.sh,
+ livecd/runscript/sparc64-archscript.sh:
+ sparc fixup patches from gustavoz at g.org
20 May 2004; John Davis <zhen@gentoo.org> modules/livecd_stage2_target.py:
added support for blacklisting modules via hotplug in livecd-stage2. spec key
def __init__(self,myspec):
generic_sparc.__init__(self,myspec)
self.settings["CFLAGS"]="-O2"
+ self.settings["CXXFLAGS"]="-O2"
self.settings["CHOST"]="sparc-unknown-linux-gnu"
def register(foo):
def __init__(self,myspec):
generic_sparc64.__init__(self,myspec)
self.settings["CFLAGS"]="-O2 -mcpu=ultrasparc"
+ self.settings["CXXFLAGS"]="-O2 -mcpu=ultrasparc"
self.settings["CHOST"]="sparc-unknown-linux-gnu"
def register(foo):
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/05/17 01:44:37 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc-archscript.sh,v 1.3 2004/05/22 00:42:59 zhen Exp $
case $1 in
kernel)
$clst_cdroot_path/boot/$x.igz
done
scfg=$clst_cdroot_path/boot/silo.conf
- kmsg=$clst_cdroot_path/boot/kernels.msg
- hmsg=$clst_cdroot_path/boot/help.msg
- echo "default=\"$first\"" > $scfg
- echo "timeout=\"150\"" >> $scfg
+ echo "default=\"help\"" > $scfg
echo "message=\"/boot/boot.msg\"" >> $scfg
- echo "Available kernels:" > $kmsg
- echo "TEST HELP MESSAGE" > $hmsg
-
for x in $clst_boot_kernel
do
echo >> $icfg
echo "image=\"cat /boot/silo.conf\"" >> $scfg
echo -e "label=\"config\"" >> $scfg
+ echo "image=\"cat /boot/video.msg\"" >> $scfg
+ echo -e "label=\"video\"" >> $scfg
+ echo "image=\"cat /boot/help.msg\"" >> $scfg
+ echo -e "label=\"help\"" >> $scfg
;;
cdfs)
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 /boot/isofs.b -B ... ${clst_cdroot_path}
+ mkisofs -J -R -l -o ${2} -G ${clst_cdroot_path}/boot/isofs.b -B ... ${clst_cdroot_path}
;;
esac
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc64-archscript.sh,v 1.3 2004/05/17 01:44:37 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc64-archscript.sh,v 1.4 2004/05/22 00:42:59 zhen Exp $
case $1 in
kernel)
$clst_cdroot_path/boot/$x.igz
done
scfg=$clst_cdroot_path/boot/silo.conf
- kmsg=$clst_cdroot_path/boot/kernels.msg
- hmsg=$clst_cdroot_path/boot/help.msg
- echo "default=\"$first\"" > $scfg
- echo "timeout=\"150\"" >> $scfg
+ echo "default=\"help\"" > $scfg
echo "message=\"/boot/boot.msg\"" >> $scfg
- echo "Available kernels:" > $kmsg
- echo "TEST HELP MESSAGE" > $hmsg
-
for x in $clst_boot_kernel
do
echo >> $icfg
echo "image=\"cat /boot/silo.conf\"" >> $scfg
echo -e "label=\"config\"" >> $scfg
+ echo "image=\"cat /boot/video.msg\"" >> $scfg
+ echo -e "label=\"video\"" >> $scfg
+ echo "image=\"cat /boot/help.msg\"" >> $scfg
+ echo -e "label=\"help\"" >> $scfg
;;
cdfs)
iso)
# this is for the livecd-final target, and calls the proper
# command to build the iso file
- mkisofs -J -R -l -z -o ${2} -G /boot/isofs.b -B ... ${clst_cdroot_path}
+ mkisofs -J -R -l -z -o ${2} -G ${clst_cdroot_path}/boot/isofs.b -B ... ${clst_cdroot_path}
;;
esac