diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-02 22:29:36 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-02 22:29:36 (GMT) |
commit | 5f0636852bb64adc0c561368b0310926c2f0b793 (patch) | |
tree | f0c58f757b5f7cb93fdf4546df49d9ee664d7f59 | |
parent | 91067baf9f4e4d7eaf84961f4299b2510ef0b250 (diff) | |
download | linhes_pkgbuild-5f0636852bb64adc0c561368b0310926c2f0b793.zip linhes_pkgbuild-5f0636852bb64adc0c561368b0310926c2f0b793.tar.gz linhes_pkgbuild-5f0636852bb64adc0c561368b0310926c2f0b793.tar.bz2 |
comment out atomic ant detection code.
This causes systemconfig.sh to fail during install.
-rwxr-xr-x | abs/core-testing/LinHES-config/PKGBUILD | 2 | ||||
-rwxr-xr-x | abs/core-testing/LinHES-config/systemconfig.sh | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/abs/core-testing/LinHES-config/PKGBUILD b/abs/core-testing/LinHES-config/PKGBUILD index 745e7e7..4c06690 100755 --- a/abs/core-testing/LinHES-config/PKGBUILD +++ b/abs/core-testing/LinHES-config/PKGBUILD @@ -1,6 +1,6 @@ pkgname=LinHES-config pkgver=1.0 -pkgrel=235 +pkgrel=236 conflicts=(MythVantage-config MythVantage-config-dev LinHES-config-dev ) pkgdesc="Install and configure your system" depends=(bc libstatgrab mysql-python expect curl dnsutils parted sg3_utils nmbscan ) diff --git a/abs/core-testing/LinHES-config/systemconfig.sh b/abs/core-testing/LinHES-config/systemconfig.sh index 0a25cbd..1bad622 100755 --- a/abs/core-testing/LinHES-config/systemconfig.sh +++ b/abs/core-testing/LinHES-config/systemconfig.sh @@ -165,14 +165,14 @@ ln -s "/usr/share/zoneinfo/$timezone" ${BASE}/etc/localtime # echo CLOCK_SYSTOCH="yes" >> ${BASE}/etc/conf.d/clock # echo TIMEZONE="$timezone" >> ${BASE}/etc/conf.d/clock cp_and_log $TEMPLATES/rc.conf /etc/rc.conf.1 -#Check for Atomic Ant -if grep disablemodules=agpart,intel_agp /proc/cmdline >/dev/null -then - cat /etc/rc.conf.1 | sed -e '/MOD_BLACKLIST/ c\MOD_BLACKLIST=($ALSABLACKLIST agpart intel_agp)' > /etc/rc.conf - rm -fr /etc/rc.conf.1 -else - exit 1 -fi +# #Check for Atomic Ant +# if grep disablemodules=agpart,intel_agp /proc/cmdline >/dev/null +# then +# cat /etc/rc.conf.1 | sed -e '/MOD_BLACKLIST/ c\MOD_BLACKLIST=($ALSABLACKLIST agpart intel_agp)' > /etc/rc.conf +# rm -fr /etc/rc.conf.1 +# else +# exit 1 +# fi } |