diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-03-13 15:46:44 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-03-13 15:46:44 +0000 |
commit | 0b58c42dfaf0ee556f889c101159a1ea87058e5a (patch) | |
tree | 6ba5a2a86548d01b8501df84187476d66f9cd7d8 /scripts | |
parent | Fixing kernel config location and cleaning up the package list on the LiveDVD... (diff) | |
download | releng-0b58c42dfaf0ee556f889c101159a1ea87058e5a.tar.gz releng-0b58c42dfaf0ee556f889c101159a1ea87058e5a.tar.bz2 releng-0b58c42dfaf0ee556f889c101159a1ea87058e5a.zip |
Do some sed-fu on the console font if we're amd64/x86 for the dialog installer.
svn path=/trunk/; revision=285
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/2007.0/livecd.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/2007.0/livecd.sh b/scripts/2007.0/livecd.sh index 07402eff..e94bfe90 100644 --- a/scripts/2007.0/livecd.sh +++ b/scripts/2007.0/livecd.sh @@ -33,6 +33,9 @@ gconftool-2 --direct \ case `uname -m` in i?86|x86_64) sed -i 's/DRIVER fbdev/DRIVER vesa/' /usr/share/hwdata/Cards + sed -e 's/CONSOLEFONT="default8x16"/CONSOLEFONT="lat1-16"/' \ + -e '/^#CONSOLETRANSLATION="8859-1_to_uni"/ s/^#//' \ + -i /etc/conf.d/consolefont ;; esac |