summaryrefslogtreecommitdiff
path: root/examples/hooks/rt2570.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2008-04-10 12:43:50 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:32 +0100
commitd57a58d781254e44a55b8e1885ee02d575b2c665 (patch)
tree28cf89f33b5075ea5669cce47ace6b12120786e7 /examples/hooks/rt2570.sh
parentd795c6c8545a1b6caf6e31db93526e45f76f0f64 (diff)
downloadlive-build-d57a58d781254e44a55b8e1885ee02d575b2c665.zip
live-build-d57a58d781254e44a55b8e1885ee02d575b2c665.tar.gz
Updating oot example hooks to loop through all install kernel flavours.
Diffstat (limited to 'examples/hooks/rt2570.sh')
-rwxr-xr-xexamples/hooks/rt2570.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/examples/hooks/rt2570.sh b/examples/hooks/rt2570.sh
index da4d237..90c3118 100755
--- a/examples/hooks/rt2570.sh
+++ b/examples/hooks/rt2570.sh
@@ -2,10 +2,15 @@
# This is a hook for live-helper(7) to install ralink rt2570 drivers
# To enable it, copy this hook into your config/chroot_local-hooks directory.
-#
-# FIXME: it runs in interactive mode
which module-assistant || apt-get install --yes module-assistant
module-assistant update
-module-assistant auto-install rt2570-source
+
+for KERNEL in /boot/vmlinuz-*
+do
+ VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
+
+ module-assistant --non-inter --quiet auto-install rt2570-source -l ${VERSION}
+done
+
module-assistant clean rt2570-source