# ChangeLog for gentoo/src/catalyst
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.181 2005/03/05 05:12:58 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.182 2005/03/06 14:35:37 wolf31o2 Exp $
+
+ 06 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+ livecd/runscript-support/livecdfs-update.sh,
+ livecd/runscript-support/pre-kmerge.sh:
+ Change sudoers update to only run if /etc/sudoers exists and only reduce
+ splash to 1024x768 on minimal and universal install CD.
05 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org> targets/grp/grp.sh,
targets/livecd-stage1/livecd-stage1.sh:
#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/livecdfs-update.sh,v 1.32 2005/03/02 02:14:34 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/livecdfs-update.sh,v 1.33 2005/03/06 14:35:37 wolf31o2 Exp $
/usr/sbin/env-update
source /etc/profile
echo "127.0.0.1 livecd.gentoo livecd localhost" > /etc/hosts
# setup sudoers
-sed -i '/NOPASSWD: ALL/ s/^# //' /etc/sudoers
+[ -e /etc/sudoers ] && sed -i '/NOPASSWD: ALL/ s/^# //' /etc/sudoers
# setup dhcp on all detected ethernet devices
echo "iface_eth0=\"dhcp\""> /etc/conf.d/net
#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/pre-kmerge.sh,v 1.8 2005/03/02 21:47:41 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/pre-kmerge.sh,v 1.9 2005/03/06 14:35:37 wolf31o2 Exp $
/usr/sbin/env-update
source /etc/profile
sed -i 's/uchi-hcd/uhci-hcd/' /usr/share/genkernel/x86/modules_load
if [ "${clst_livecd_type}" = "gentoo-release-minimal" ] \
- [ "${clst_livecd_type}" = "gentoo-release-universal" ]; then
- sed -i 's/initramfs_data.cpio.gz /initramfs_data.cpio.gz -r 1024x768 /'\
- /usr/share/genkernel/genkernel
+|| [ "${clst_livecd_type}" = "gentoo-release-universal" ]; then
+ sed -i 's/initramfs_data.cpio.gz /initramfs_data.cpio.gz -r 1024x768 /'\
+ /usr/share/genkernel/genkernel
fi