diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-31 01:40:46 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-31 01:40:46 (GMT) |
commit | 1f08582ed9fbcfb8eed7d5adc9b12d095501d6cb (patch) | |
tree | d77561e5ea0fb3a2d53d0acfbc643d631b60d497 /abs/core-testing | |
parent | 3e00795ac21fc2c4f56657f95be22afe1dcbec10 (diff) | |
download | linhes_pkgbuild-1f08582ed9fbcfb8eed7d5adc9b12d095501d6cb.zip linhes_pkgbuild-1f08582ed9fbcfb8eed7d5adc9b12d095501d6cb.tar.gz linhes_pkgbuild-1f08582ed9fbcfb8eed7d5adc9b12d095501d6cb.tar.bz2 |
Modification so Atomic Ant works w/o issue.
Diffstat (limited to 'abs/core-testing')
-rwxr-xr-x | abs/core-testing/LinHES-config/systemconfig.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/abs/core-testing/LinHES-config/systemconfig.sh b/abs/core-testing/LinHES-config/systemconfig.sh index 59b5cef..80fd9b8 100755 --- a/abs/core-testing/LinHES-config/systemconfig.sh +++ b/abs/core-testing/LinHES-config/systemconfig.sh @@ -161,6 +161,12 @@ echo $timezone ln -s "/usr/share/zoneinfo/$timezone" ${BASE}/etc/localtime sed -e "s~^TIMEZONE=.*$~TIMEZONE=\"${timezone}\"~" ${BASE}/etc/rc.conf > $TEMPLATES/rc.conf + grep -v disablemodules=agpart,intel_agp /proc/cmdline > /tmp/aa + if [ -s /tmp/aa ]; then + cat $TEMPLATES/rc.conf | sed -e '/MOD_BLACKLIST/ c\MOD_BLACKLIST=($ALSABLACKLIST agpart intel_agp)' > $TEMPLATES/rc.conf + else + exit 1 + fi # echo CLOCK="UTC" > ${BASE}/etc/conf.dclock # echo CLOCK_SYSTOCH="yes" >> ${BASE}/etc/conf.d/clock # echo TIMEZONE="$timezone" >> ${BASE}/etc/conf.d/clock |