aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/kmod.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chapter8/kmod.sh')
-rw-r--r--chapter8/kmod.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/chapter8/kmod.sh b/chapter8/kmod.sh
new file mode 100644
index 0000000..65e3a5f
--- /dev/null
+++ b/chapter8/kmod.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+./configure --prefix=/usr \
+ --bindir=/bin \
+ --sysconfdir=/etc \
+ --with-rootlibdir=/lib \
+ --with-xz \
+ --with-zstd \
+ --with-zlib
+
+make
+
+make -j1 install
+
+for target in depmod insmod lsmod modinfo modprobe rmmod; do
+ ln -sfv ../bin/kmod /sbin/"${target}"
+done
+
+ln -sfv kmod /bin/lsmod