lfs-scripts/scripts/chapter8/8.47-kmod.sh

37 lines
519 B
Bash
Raw Normal View History

2023-01-12 08:49:36 +00:00
#!/bin/bash
cd /sources
tar xf kmod-30.tar.xz
cd kmod-30
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-openssl \
--with-xz \
--with-zstd \
--with-zlib
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make install
for target in depmod insmod modinfo modprobe rmmod; do
ln -sfv ../bin/kmod /usr/sbin/$target
done
ln -sfv kmod /usr/bin/lsmod
cd /sources
rm -rf kmod-30