mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
19 lines
373 B
Bash
19 lines
373 B
Bash
# Kmod Phase 4
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-openssl \
|
|
--with-xz \
|
|
--with-zstd \
|
|
--with-zlib
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
for target in depmod insmod modinfo modprobe rmmod; do
|
|
ln -sf ../bin/kmod /usr/sbin/$target
|
|
done
|
|
|
|
ln -sf kmod /usr/bin/lsmod
|
|
|