mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +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: Aaron Griffin <aaron@archlinux.org>
|
||||||
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||||||
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
||||||
|
@ -9,8 +9,8 @@ plugrel=1
|
||||||
|
|
||||||
pkgbase="udev"
|
pkgbase="udev"
|
||||||
pkgname=('udev' 'udev-compat')
|
pkgname=('udev' 'udev-compat')
|
||||||
pkgver=165
|
pkgver=166
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
|
url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
|
@ -25,7 +25,7 @@ source=(http://www.kernel.org/pub/linux/utils/kernel/hotplug/$pkgname-$pkgver.ta
|
||||||
cdsymlinks.sh
|
cdsymlinks.sh
|
||||||
11-media-by-label-auto-mount.rules
|
11-media-by-label-auto-mount.rules
|
||||||
11-sd-cards-auto-mount.rules)
|
11-sd-cards-auto-mount.rules)
|
||||||
md5sums=('74c62aa82969278960b7ee81e94b6d8f'
|
md5sums=('4db27d73fdbe94f47fd89fdd105c2dfb'
|
||||||
'4427855146513a4703ab5c7eb8a0156e'
|
'4427855146513a4703ab5c7eb8a0156e'
|
||||||
'f17c99779173ddc79f866cf3a5de5e68'
|
'f17c99779173ddc79f866cf3a5de5e68'
|
||||||
'f91fddc67609b45b244a624977c4247b'
|
'f91fddc67609b45b244a624977c4247b'
|
||||||
|
@ -71,9 +71,9 @@ package_udev() {
|
||||||
|
|
||||||
# create framebuffer blacklist
|
# create framebuffer blacklist
|
||||||
mkdir -p $pkgdir/etc/modprobe.d/
|
mkdir -p $pkgdir/etc/modprobe.d/
|
||||||
for mod in $(find /lib/modules/*/kernel/drivers/video -name '*fb.ko' -exec basename {} .ko \;); do
|
for mod in $(find /lib/modules/*/kernel/drivers/video -name '*fb.ko.gz' -exec basename {} .ko.gz \;); do
|
||||||
echo "blacklist $mod" >> $pkgdir/etc/modprobe.d/framebuffer_blacklist.conf
|
echo "blacklist $mod"
|
||||||
done
|
done | sort -u > $pkgdir/etc/modprobe.d/framebuffer_blacklist.conf
|
||||||
|
|
||||||
# create static devices in /lib/udev/devices/
|
# create static devices in /lib/udev/devices/
|
||||||
mkdir ${pkgdir}/lib/udev/devices/pts
|
mkdir ${pkgdir}/lib/udev/devices/pts
|
||||||
|
@ -113,7 +113,6 @@ package_udev() {
|
||||||
rm -rf $pkgdir/etc/udev/rules.d/*
|
rm -rf $pkgdir/etc/udev/rules.d/*
|
||||||
cp $srcdir/11-media-by-label-auto-mount.rules $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/
|
cp $srcdir/11-sd-cards-auto-mount.rules $pkgdir/etc/udev/rules.d/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package_udev-compat() {
|
package_udev-compat() {
|
||||||
|
|
Loading…
Reference in a new issue