diff --git a/releases/2008.0/ChangeLog b/releases/2008.0/ChangeLog index f5a51e33..c6e31edf 100644 --- a/releases/2008.0/ChangeLog +++ b/releases/2008.0/ChangeLog @@ -2,12 +2,16 @@ # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 24 Jun 2008; Chris Gianelloni scripts/livecd.sh: + Added a sed to remove DefaultColorDepth from the xorg.conf.in provided by + mkxf86config for bug #222691. + 13 Jun 2008; - specs/ppc/ppc64/power5, specs/ppc/ppc64/g5 + specs/ppc/ppc64/power5, specs/ppc/ppc64/g5: Updating chost reference on 32ul for power5 and minor typos for g5 64UL stages 13 Jun 2008; - specs/ppc/ppc64/installcd-stage2-universal.spec + specs/ppc/ppc64/installcd-stage2-universal.spec : Updating kernel references to 2.6.24 18 Jun 2008; Raúl Porcel @@ -17,7 +21,7 @@ Add SCSI cdrom support to ia64 installcd, rename the kconfig to 2.6.24 13 Jun 2008; - kconfigs/powerpc/ + kconfigs/powerpc/: Updating kernel configs to 2.6.24 and fixing pcmcia borkage 12 Jun 2008; diff --git a/releases/2008.0/scripts/livecd.sh b/releases/2008.0/scripts/livecd.sh index 28a32955..3d81dc23 100644 --- a/releases/2008.0/scripts/livecd.sh +++ b/releases/2008.0/scripts/livecd.sh @@ -60,3 +60,9 @@ then fi EOF +#[ -x /usr/bin/ktelnet ] && ln -sf /usr/bin/ktelnet /usr/bin/telnet +#[ -x /usr/bin/kftp ] && ln -sf /usr/bin/kftp /usr/bin/ftp + +# Remove DefaultColorDepth +[ -e /etc/X11/xorg.conf.in ] && sed -i -e '/DefaultColorDepth/d' /etc/X11/xorg.conf.in +