mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
Updated core/udev
This commit is contained in:
parent
b9514c2dcf
commit
136049b8f7
1 changed files with 7 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
# Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
||||
# $Id: PKGBUILD 109960 2011-02-14 14:00:15Z tpowa $
|
||||
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||||
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||||
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
||||
|
@ -9,8 +9,8 @@ plugrel=1
|
|||
|
||||
pkgbase="udev"
|
||||
pkgname=('udev' 'udev-compat')
|
||||
pkgver=165
|
||||
pkgrel=1
|
||||
pkgver=166
|
||||
pkgrel=2
|
||||
arch=(i686 x86_64)
|
||||
url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
|
||||
license=('GPL')
|
||||
|
@ -25,7 +25,7 @@ source=(http://www.kernel.org/pub/linux/utils/kernel/hotplug/$pkgname-$pkgver.ta
|
|||
cdsymlinks.sh
|
||||
11-media-by-label-auto-mount.rules
|
||||
11-sd-cards-auto-mount.rules)
|
||||
md5sums=('74c62aa82969278960b7ee81e94b6d8f'
|
||||
md5sums=('4db27d73fdbe94f47fd89fdd105c2dfb'
|
||||
'4427855146513a4703ab5c7eb8a0156e'
|
||||
'f17c99779173ddc79f866cf3a5de5e68'
|
||||
'f91fddc67609b45b244a624977c4247b'
|
||||
|
@ -71,9 +71,9 @@ package_udev() {
|
|||
|
||||
# create framebuffer blacklist
|
||||
mkdir -p $pkgdir/etc/modprobe.d/
|
||||
for mod in $(find /lib/modules/*/kernel/drivers/video -name '*fb.ko' -exec basename {} .ko \;); do
|
||||
echo "blacklist $mod" >> $pkgdir/etc/modprobe.d/framebuffer_blacklist.conf
|
||||
done
|
||||
for mod in $(find /lib/modules/*/kernel/drivers/video -name '*fb.ko.gz' -exec basename {} .ko.gz \;); do
|
||||
echo "blacklist $mod"
|
||||
done | sort -u > $pkgdir/etc/modprobe.d/framebuffer_blacklist.conf
|
||||
|
||||
# create static devices in /lib/udev/devices/
|
||||
mkdir ${pkgdir}/lib/udev/devices/pts
|
||||
|
@ -113,7 +113,6 @@ package_udev() {
|
|||
rm -rf $pkgdir/etc/udev/rules.d/*
|
||||
cp $srcdir/11-media-by-label-auto-mount.rules $pkgdir/etc/udev/rules.d/
|
||||
cp $srcdir/11-sd-cards-auto-mount.rules $pkgdir/etc/udev/rules.d/
|
||||
|
||||
}
|
||||
|
||||
package_udev-compat() {
|
||||
|
|
Loading…
Reference in a new issue