15 lines
235 B
Bash
Executable File
15 lines
235 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-xz \
|
|
--with-zlib
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
for tool in lsmod insmod rmmod depmod modinfo modprobe; do
|
|
ln -s kmod "$1/usr/bin/$tool"
|
|
done
|