Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] releng r462 - in trunk/releases/2008.0: . scripts
Date: Thu, 28 Feb 2008 20:34:44
Message-Id: E1JUpSi-0006go-6L@stork.gentoo.org
1 Author: wolf31o2
2 Date: 2008-02-28 20:34:39 +0000 (Thu, 28 Feb 2008)
3 New Revision: 462
4
5 Modified:
6 trunk/releases/2008.0/ChangeLog
7 trunk/releases/2008.0/scripts/livecd.sh
8 Log:
9 Added code to disable UAC on Alpha for bug #210282 and also enforcing a Unicode-enabled console font across the board.
10
11 Modified: trunk/releases/2008.0/ChangeLog
12 ===================================================================
13 --- trunk/releases/2008.0/ChangeLog 2008-02-28 20:27:16 UTC (rev 461)
14 +++ trunk/releases/2008.0/ChangeLog 2008-02-28 20:34:39 UTC (rev 462)
15 @@ -2,6 +2,10 @@
16 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Header: $
18
19 + 28 Feb 2008; Chris Gianelloni <wolf31o2@g.o> scripts/livecd.sh:
20 + Added code to disable UAC on Alpha for bug #210282 and also enforcing a
21 + Unicode-enabled console font across the board.
22 +
23 28 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
24 specs/alpha/installcd-stage1.spec, specs/alpha/livecd-stage1.spec,
25 specs/amd64/installcd-stage1.spec, specs/amd64/livecd-stage1.spec,
26
27 Modified: trunk/releases/2008.0/scripts/livecd.sh
28 ===================================================================
29 --- trunk/releases/2008.0/scripts/livecd.sh 2008-02-28 20:27:16 UTC (rev 461)
30 +++ trunk/releases/2008.0/scripts/livecd.sh 2008-02-28 20:34:39 UTC (rev 462)
31 @@ -7,14 +7,21 @@
32 fi
33
34 case `uname -m` in
35 + alpha)
36 + echo >> /etc/sysctl.conf
37 + echo "# Disable UAC on Alpha" >> /etc/sysctl.conf
38 + echo "uac.noprint = 1" >> /etc/sysctl.conf
39 + ;;
40 i?86|x86_64)
41 sed -i 's/DRIVER fbdev/DRIVER vesa/' /usr/share/hwdata/Cards
42 - sed -e 's/CONSOLEFONT="default8x16"/CONSOLEFONT="lat1-16"/' \
43 - -e '/^#CONSOLETRANSLATION="8859-1_to_uni"/ s/^#//' \
44 - -i /etc/conf.d/consolefont
45 ;;
46 esac
47
48 +# Enforce a unicode font by default
49 +sed -e 's/CONSOLEFONT="default8x16"/CONSOLEFONT="lat1-16"/' \
50 + -e '/^#CONSOLETRANSLATION="8859-1_to_uni"/ s/^#//' \
51 + -i /etc/conf.d/consolefont
52 +
53 # This is necessary because /home/gentoo in the squashfs ends up getting owned
54 # by whoever the owner of the overlay files were on the build box. This causes
55 # weird stuff to happen like X failing to start because it doesn't have the
56
57 --
58 gentoo-commits@l.g.o mailing list