module-init-tools: create an empty /etc/modprobe.conf.
--HG-- extra : convert_revision : 510d085ab154e0f6a9d5beaa53ad77fa22bb4364
This commit is contained in:
parent
f081057200
commit
908b00a99b
1 changed files with 13 additions and 2 deletions
|
@ -6,8 +6,7 @@ patch_args="-Np1"
|
||||||
distfiles="
|
distfiles="
|
||||||
http://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$version.tar.bz2"
|
http://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$version.tar.bz2"
|
||||||
build_style=gnu_configure
|
build_style=gnu_configure
|
||||||
configure_args="--enable-zlib --bindir=$XBPS_DESTDIR/$pkgname-$version/sbin
|
configure_args="--enable-zlib --prefix="
|
||||||
--sbindir=$XBPS_DESTDIR/$pkgname-$version/sbin"
|
|
||||||
short_desc="Tools for managing kernel modules"
|
short_desc="Tools for managing kernel modules"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
checksum=64a0b3b058f2236be1a8138356306c91e5f23f149a131428e4c7d97b1c050728
|
checksum=64a0b3b058f2236be1a8138356306c91e5f23f149a131428e4c7d97b1c050728
|
||||||
|
@ -16,5 +15,17 @@ long_desc="
|
||||||
needed by Linux systems for managing loadable Linux Kernel Modules. This
|
needed by Linux systems for managing loadable Linux Kernel Modules. This
|
||||||
includes depmod, insmod, rmmod, modprobe and tools like modinfo."
|
includes depmod, insmod, rmmod, modprobe and tools like modinfo."
|
||||||
|
|
||||||
|
conf_files="/etc/modprobe.conf"
|
||||||
Add_dependency full glibc
|
Add_dependency full glibc
|
||||||
Add_dependency full zlib
|
Add_dependency full zlib
|
||||||
|
|
||||||
|
post_install()
|
||||||
|
{
|
||||||
|
mkdir -p ${DESTDIR}/etc
|
||||||
|
cat >> ${DESTDIR}/etc/modprobe.conf <<_EOF
|
||||||
|
#
|
||||||
|
# /etc/modprobe.conf. Please read modprobe.conf(8).
|
||||||
|
#
|
||||||
|
_EOF
|
||||||
|
chmod 644 ${DESTDIR}/etc/modprobe.conf
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue