This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/kmod/host.bash

21 lines
237 B
Bash

. "$pkg_common"
configure()
{
make distclean
./configure \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install &&
ln -fs ../bin/kmod "$cfg_dir_toolchain/sbin/depmod"
}