summaryrefslogtreecommitdiffstats
path: root/module-init-tools
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 19:15:23 +0100
committerLukc <lukc@upyum.com>2010-12-11 19:15:35 +0100
commit6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch)
treeb5e6da6d95b9a1235d82032b509b80483a886ff5 /module-init-tools
downloadbase-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip
Engagement initial.
Diffstat (limited to 'module-init-tools')
-rw-r--r--module-init-tools/.footprint25
-rw-r--r--module-init-tools/.md5sum1
-rw-r--r--module-init-tools/Pkgfile19
-rw-r--r--module-init-tools/Pkgfile.old19
4 files changed, 64 insertions, 0 deletions
diff --git a/module-init-tools/.footprint b/module-init-tools/.footprint
new file mode 100644
index 0000000..b75e2ef
--- /dev/null
+++ b/module-init-tools/.footprint
@@ -0,0 +1,25 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/depmod.d/
+drwxr-xr-x root/root etc/modprobe.d/
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/depmod
+-rwxr-xr-x root/root sbin/insmod
+-rwxr-xr-x root/root sbin/insmod.static
+-rwxr-xr-x root/root sbin/lsmod
+-rwxr-xr-x root/root sbin/modinfo
+-rwxr-xr-x root/root sbin/modprobe
+-rwxr-xr-x root/root sbin/rmmod
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man5/
+-rw-r--r-- root/root usr/man/man5/depmod.conf.5.gz
+-rw-r--r-- root/root usr/man/man5/modprobe.conf.5.gz
+-rw-r--r-- root/root usr/man/man5/modprobe.d.5.gz
+-rw-r--r-- root/root usr/man/man5/modules.dep.5.gz
+drwxr-xr-x root/root usr/man/man8/
+-rw-r--r-- root/root usr/man/man8/depmod.8.gz
+-rw-r--r-- root/root usr/man/man8/insmod.8.gz
+-rw-r--r-- root/root usr/man/man8/lsmod.8.gz
+-rw-r--r-- root/root usr/man/man8/modinfo.8.gz
+-rw-r--r-- root/root usr/man/man8/modprobe.8.gz
+-rw-r--r-- root/root usr/man/man8/rmmod.8.gz
diff --git a/module-init-tools/.md5sum b/module-init-tools/.md5sum
new file mode 100644
index 0000000..2448ec8
--- /dev/null
+++ b/module-init-tools/.md5sum
@@ -0,0 +1 @@
+8b2257ce9abef74c4a44d825d23140f3 module-init-tools-3.12.tar.bz2
diff --git a/module-init-tools/Pkgfile b/module-init-tools/Pkgfile
new file mode 100644
index 0000000..a46e9fb
--- /dev/null
+++ b/module-init-tools/Pkgfile
@@ -0,0 +1,19 @@
+description="Kernel module utilities"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://kerneltools.org/KernelTools.org"
+depends=()
+
+name=module-init-tools
+version=3.12
+release=1
+source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/module-init-tools-3.12.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ touch *.5 *.8;
+ ./configure --prefix=/usr --bindir=/sbin --sbindir=/sbin;
+ make;
+ make DESTDIR=$PKG mandir=/usr/man install;
+ install -d $PKG/etc/{modprobe.d,depmod.d}
+}
diff --git a/module-init-tools/Pkgfile.old b/module-init-tools/Pkgfile.old
new file mode 100644
index 0000000..ca7db5e
--- /dev/null
+++ b/module-init-tools/Pkgfile.old
@@ -0,0 +1,19 @@
+# Description: Kernel module utilities
+# URL: http://kerneltools.org/KernelTools.org
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+name=module-init-tools
+version=3.12
+release=1
+source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ touch *.5 *.8
+ ./configure --prefix=/usr \
+ --bindir=/sbin \
+ --sbindir=/sbin
+ make
+ make DESTDIR=$PKG mandir=/usr/man install
+ install -d $PKG/etc/{modprobe.d,depmod.d}
+}