[arch-commits] Commit in module-init-tools/trunk (PKGBUILD depmod.conf)

Dave Reisner dreisner at archlinux.org
Sun Dec 4 04:52:20 UTC 2011


    Date: Saturday, December 3, 2011 @ 23:52:19
  Author: dreisner
Revision: 144111

upgpkg: module-init-tools 3.16-3

- add depmod.conf to include searching extramodules/ (FS#20046)

Added:
  module-init-tools/trunk/depmod.conf
Modified:
  module-init-tools/trunk/PKGBUILD

-------------+
 PKGBUILD    |   16 +++++++++++-----
 depmod.conf |    5 +++++
 2 files changed, 16 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2011-12-04 03:46:03 UTC (rev 144110)
+++ PKGBUILD	2011-12-04 04:52:19 UTC (rev 144111)
@@ -5,19 +5,22 @@
 
 pkgname=module-init-tools
 pkgver=3.16
-pkgrel=2
+pkgrel=3
 pkgdesc="Utilities needed by Linux systems for managing loadable kernel modules"
 arch=('i686' 'x86_64')
 url="https://modules.wiki.kernel.org"
 license=('GPL')
 depends=('glibc')
 makedepends=('docbook2x')
-backup=('etc/modprobe.d/modprobe.conf')
+backup=('etc/modprobe.d/modprobe.conf'
+        'etc/depmod.d/depmod.conf')
 source=("http://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.bz2"
         modprobe.conf
+        depmod.conf
         docfix.patch)
 md5sums=('bc44832c6e41707b8447e2847d2019f5'
          '325657db471b3190f685e5a89c9b90e3'
+         '4b8cbcbc54b9029c99fd730e257d4436'
          '4320d19902ded43bed55c804b065cdc7')
 
 build() {
@@ -35,9 +38,12 @@
 
   make DESTDIR=$pkgdir install
 
-  # extra modprobe.d conf dir
-  install -dm755 "$pkgdir/lib/modprobe.d"
+  # extra modprobe.d and depmod.d conf dirs
+  install -dm755 "$pkgdir/lib/modprobe.d" "$pkgdir/etc/depmod.d"
 
-  # Install our custom (read: empty) modprobe.conf
+  # Install custom depmod config to allow searching extramodules/
+  install -Dm644 "$srcdir/depmod.conf" "$pkgdir/etc/depmod.d/depmod.conf"
+
+  # Install our custom (empty) modprobe.conf
   install -Dm644 "$srcdir/modprobe.conf" "$pkgdir/etc/modprobe.d/modprobe.conf"
 }

Added: depmod.conf
===================================================================
--- depmod.conf	                        (rev 0)
+++ depmod.conf	2011-12-04 04:52:19 UTC (rev 144111)
@@ -0,0 +1,5 @@
+#
+# /etc/depmod.d/depmod.conf
+#
+
+search updates extramodules built-in




More information about the arch-commits mailing list