Created releases directory structure and imported the 2008.0 specs/kconfigs that I've been using for testing. They very likely don't work, as is, since I uncommented nearly every package so we can determine which ones are masked or otherwise have compilation problems.
svn path=/trunk/; revision=392
This commit is contained in:
parent
e3a0ad6434
commit
c4c1dd1de7
29 changed files with 10144 additions and 0 deletions
17
releases/2008.0/scripts/livecd.sh
Normal file
17
releases/2008.0/scripts/livecd.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
# This is where we will put any release-specific fsscript code
|
||||
|
||||
if [[ -e /etc/conf.d/clock ]]
|
||||
then
|
||||
sed -i -e 's/#TIMEZONE="Factory"/TIMEZONE="UTC"/' /etc/conf.d/clock
|
||||
fi
|
||||
|
||||
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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue