diff options
author | Daniel Baumann <daniel@debian.org> | 2008-04-10 12:43:50 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:32 +0100 |
commit | d57a58d781254e44a55b8e1885ee02d575b2c665 (patch) | |
tree | 28cf89f33b5075ea5669cce47ace6b12120786e7 /examples/hooks/nvidia-legacy.sh | |
parent | d795c6c8545a1b6caf6e31db93526e45f76f0f64 (diff) | |
download | vyos-live-build-d57a58d781254e44a55b8e1885ee02d575b2c665.tar.gz vyos-live-build-d57a58d781254e44a55b8e1885ee02d575b2c665.zip |
Updating oot example hooks to loop through all install kernel flavours.
Diffstat (limited to 'examples/hooks/nvidia-legacy.sh')
-rwxr-xr-x | examples/hooks/nvidia-legacy.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/examples/hooks/nvidia-legacy.sh b/examples/hooks/nvidia-legacy.sh index 0dc3c6ec6..f4ce544e6 100755 --- a/examples/hooks/nvidia-legacy.sh +++ b/examples/hooks/nvidia-legacy.sh @@ -1,6 +1,6 @@ #!/bin/sh -# This is a hook for live-helper(7) to install nvidia-legacy drivers +# This is a hook for live-helper(7) to install nvidia-kernel-legacy drivers # To enable it, copy this hook into your config/chroot_localhooks directory. # # Note: This hook requires packages from the non-free section. Make sure you @@ -9,7 +9,14 @@ # Building kernel module which module-assistant || apt-get install --yes module-assistant nvidia-kernel-common module-assistant update -module-assistant --non-inter --quiet auto-install nvidia-kernel-legacy + +for KERNEL in /boot/vmlinuz-* +do + VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')" + + module-assistant --non-inter --quiet auto-install nvidia-kernel-legacy -l ${VERSION} +done + module-assistant clean nvidia-kernel-legacy # Installing additional stuff |