mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
Up-to-date udev
This commit is contained in:
parent
68bbb6c22e
commit
762eeeeaf0
3 changed files with 11 additions and 11 deletions
0
core/udev/81-arch.rules
Executable file → Normal file
0
core/udev/81-arch.rules
Executable file → Normal file
20
core/udev/PKGBUILD
Executable file → Normal file
20
core/udev/PKGBUILD
Executable file → Normal file
|
@ -1,22 +1,21 @@
|
|||
# Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
||||
Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
||||
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||||
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||||
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
||||
|
||||
# Plugbox changes: Just added the SD and USB automount rules
|
||||
# Plugbox changes: add the automounting rules, that's all
|
||||
|
||||
pkgbase="udev"
|
||||
pkgname=('udev' 'udev-compat')
|
||||
pkgver=164
|
||||
pkgrel=3
|
||||
plugrel=1
|
||||
arch=(arm)
|
||||
pkgver=165
|
||||
pkgrel=1
|
||||
arch=(i686 x86_64)
|
||||
url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
|
||||
license=('GPL')
|
||||
groups=('base')
|
||||
# older initscripts versions required start_udev
|
||||
options=(!makeflags !libtool)
|
||||
makedepends=('glibc' 'coreutils' 'util-linux' 'libusb-compat' 'glib2' 'kernel26' 'gperf' 'libxslt' 'gobject-introspection')
|
||||
makedepends=('glibc' 'coreutils' 'util-linux' 'pciutils' 'libusb-compat' 'glib2' 'kernel26' 'gperf' 'libxslt' 'gobject-introspection')
|
||||
source=(http://www.kernel.org/pub/linux/utils/kernel/hotplug/$pkgname-$pkgver.tar.bz2
|
||||
80-drivers.rules
|
||||
81-arch.rules
|
||||
|
@ -24,7 +23,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=('cd285a85f969518a671834de2f4d6614'
|
||||
md5sums=('74c62aa82969278960b7ee81e94b6d8f'
|
||||
'4427855146513a4703ab5c7eb8a0156e'
|
||||
'f17c99779173ddc79f866cf3a5de5e68'
|
||||
'f91fddc67609b45b244a624977c4247b'
|
||||
|
@ -41,8 +40,8 @@ build() {
|
|||
|
||||
package_udev() {
|
||||
pkgdesc="The userspace dev tools (udev)"
|
||||
depends=('glibc' 'coreutils' 'util-linux' 'libusb' 'glib2'
|
||||
'module-init-tools>=3.11')
|
||||
depends=('glibc' 'coreutils' 'util-linux' 'libusb-compat' 'glib2'
|
||||
'module-init-tools>=3.11' 'pciutils')
|
||||
install=udev.install
|
||||
backup=(etc/udev/udev.conf
|
||||
etc/modprobe.d/framebuffer_blacklist.conf)
|
||||
|
@ -112,6 +111,7 @@ 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() {
|
||||
|
|
2
core/udev/udev.install
Executable file → Normal file
2
core/udev/udev.install
Executable file → Normal file
|
@ -28,7 +28,7 @@ post_install() {
|
|||
mknod -m644 ${ROOTDIR}/dev/null c 1 3
|
||||
fi
|
||||
if [ ! -c ${ROOTDIR}/dev/zero ]; then
|
||||
rm ${ROOTDIR}/dev/zero
|
||||
rm -f ${ROOTDIR}/dev/zero
|
||||
mknod -m644 ${ROOTDIR}/dev/zero c 1 5
|
||||
fi
|
||||
if [ -n "${ROOTDIR}" ]; then
|
||||
|
|
Loading…
Reference in a new issue