diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-06 14:09:59 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-06 14:09:59 -0500 |
commit | af28b78b8e659f995b39a5dde2ce2cef0da9fbe0 (patch) | |
tree | a80d4cfef7713f7aa26137c0da553358af4cd7b2 /chapter8/kmod.sh | |
parent | 783a4c48e04e81783848f0cb0f757f6a836d7f6e (diff) |
Add chapter8 script commands.
Diffstat (limited to 'chapter8/kmod.sh')
-rw-r--r-- | chapter8/kmod.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chapter8/kmod.sh b/chapter8/kmod.sh index 7a693aa..65e3a5f 100644 --- a/chapter8/kmod.sh +++ b/chapter8/kmod.sh @@ -1,3 +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 |