Removing linux-modules.chroot example hook, this can be done by kmods conf.d directories directly.

This commit is contained in:
Daniel Baumann 2012-07-19 03:20:08 +02:00
parent 998584f2af
commit 6d45398edd
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
#!/bin/sh
# This is a hook for live-build(7) to add entries to /etc/modules.
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
# directory.
MODULES=""
for MODULE in ${MODULES}
do
if ! grep -qs /etc/modules ${MODULE}
then
echo ${MODULE} >> /etc/modules
fi
done