diff options
author | James Meyer <james.meyer@operamail.com> | 2009-08-19 21:44:03 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-08-19 21:44:03 (GMT) |
commit | 79daa29002e02579e84a5bb7ca895be2395a7fce (patch) | |
tree | 402a6ba34feff4c9d144b65bfe6e6d0f16782485 /abs/core-testing/LinHES-system | |
parent | db90030979f646114470d9a2c6f5e394d3af181f (diff) | |
download | linhes_pkgbuild-79daa29002e02579e84a5bb7ca895be2395a7fce.zip linhes_pkgbuild-79daa29002e02579e84a5bb7ca895be2395a7fce.tar.gz linhes_pkgbuild-79daa29002e02579e84a5bb7ca895be2395a7fce.tar.bz2 |
Linhes-config/system: add option to stop tweaker from running.
Diffstat (limited to 'abs/core-testing/LinHES-system')
-rw-r--r-- | abs/core-testing/LinHES-system/LinHES-run | 13 | ||||
-rw-r--r-- | abs/core-testing/LinHES-system/PKGBUILD | 2 |
2 files changed, 10 insertions, 5 deletions
diff --git a/abs/core-testing/LinHES-system/LinHES-run b/abs/core-testing/LinHES-system/LinHES-run index 640b2f3..1b91def 100644 --- a/abs/core-testing/LinHES-system/LinHES-run +++ b/abs/core-testing/LinHES-system/LinHES-run @@ -51,10 +51,15 @@ then if [ -f ~/.configure ] then # Run Tweaker, which applies generic and hardware-specific settings - sudo -E tweaker.pl - /bin/rm /tmp/fps # ??? clean up a temp file that will eventually be obsolete anyway - # Run any brand-specific commands, if necessary. - SpecialHardwareCommands + if [ ! -f ~/.no_meth ] + then + sudo -E tweaker.pl + /bin/rm /tmp/fps # ??? clean up a temp file that will eventually be obsolete anyway + # Run any brand-specific commands, if necessary. + SpecialHardwareCommands + else + rm -f ~/.no_meth + fi sudo sv stop mythbackend xterm -fn *18* -e sudo taskset -c 0 /usr/bin/mythtv-setup sudo sv start mythbackend diff --git a/abs/core-testing/LinHES-system/PKGBUILD b/abs/core-testing/LinHES-system/PKGBUILD index aca4c13..2a10fe0 100644 --- a/abs/core-testing/LinHES-system/PKGBUILD +++ b/abs/core-testing/LinHES-system/PKGBUILD @@ -1,6 +1,6 @@ pkgname=LinHES-system pkgver=1.0 -pkgrel=64 +pkgrel=69 arch=('i686') MVDIR=$startdir/pkg/usr/LH BINDIR=$startdir/pkg/usr/bin |