diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-16 17:22:29 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-16 17:22:29 (GMT) |
commit | 8f84737ed83ba564ac1fb07d84d72c62a7863794 (patch) | |
tree | 9fd941ecd57aaa0730a8949683817abe75b65f02 /abs/core-testing/LinHES-system/PKGBUILD | |
parent | f733f83d8a079d4626884b4cc5112ba0591213d3 (diff) | |
download | linhes_pkgbuild-8f84737ed83ba564ac1fb07d84d72c62a7863794.zip linhes_pkgbuild-8f84737ed83ba564ac1fb07d84d72c62a7863794.tar.gz linhes_pkgbuild-8f84737ed83ba564ac1fb07d84d72c62a7863794.tar.bz2 |
Prevent alsa drivers from grabbing index 0 for "abnormal drivers"
closes FS#290
Diffstat (limited to 'abs/core-testing/LinHES-system/PKGBUILD')
-rw-r--r-- | abs/core-testing/LinHES-system/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/abs/core-testing/LinHES-system/PKGBUILD b/abs/core-testing/LinHES-system/PKGBUILD index 6270026..14958c7 100644 --- a/abs/core-testing/LinHES-system/PKGBUILD +++ b/abs/core-testing/LinHES-system/PKGBUILD @@ -1,16 +1,16 @@ pkgname=LinHES-system pkgver=1.0 -pkgrel=41 +pkgrel=42 arch=('i686') MVDIR=$startdir/pkg/usr/LH BINDIR=$startdir/pkg/usr/bin install=LinHES.install pkgdesc="scripts and things related to having a automated system" depends=(linhes-sounds xdotool) - +backup=(etc/modprobe.d/alsa-base) binfiles="LinHES-start optimize_mythdb.py myth_mtc.py myth_mtc.sh LinHES-run firstboot.sh load-modules-mythvantage.sh" -source=(LinHES-session LinHES-profile.sh $binfiles) +source=(LinHES-session LinHES-profile.sh $binfiles alsa-base) build() { cd $startdir/src @@ -35,6 +35,7 @@ do echo $item done +install -m755 -D $startdir/src/alsa-base $startdir/pkg/etc/modprobe.d/alsa-base } |