diff options
author | Holger Paradies <retabell@gmx.de> | 2013-11-20 20:35:46 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2013-11-24 23:09:37 +0100 |
commit | d5126fe4dab6af6f7591a909e9ba35920ff68e13 (patch) | |
tree | d116d77b4129c4d2e84d6eabef30f7f94f60af0d /config | |
parent | 995e2aa938a98bbe0c7c143ffa88b6bbfc522645 (diff) | |
download | kanotix-d5126fe4dab6af6f7591a909e9ba35920ff68e13.zip kanotix-d5126fe4dab6af6f7591a909e9ba35920ff68e13.tar.gz |
move: dkms
Diffstat (limited to 'config')
-rwxr-xr-x | config/chroot_local-hooks/07-dkms | 3 | ||||
-rwxr-xr-x | config/chroot_local-hooks/xx-03-dkms | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/chroot_local-hooks/07-dkms b/config/chroot_local-hooks/07-dkms deleted file mode 100755 index 4de0351..0000000 --- a/config/chroot_local-hooks/07-dkms +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -[ -x /usr/lib/dkms/dkms_autoinstaller ] || exit 0 -for x in /boot/vmlinuz-*;do KVERS=$x /usr/lib/dkms/dkms_autoinstaller start ${x#/boot/vmlinuz-}; done diff --git a/config/chroot_local-hooks/xx-03-dkms b/config/chroot_local-hooks/xx-03-dkms new file mode 100755 index 0000000..8a5711c --- /dev/null +++ b/config/chroot_local-hooks/xx-03-dkms @@ -0,0 +1,3 @@ +#!/bin/bash +[ -x /usr/lib/dkms/dkms_autoinstaller ] || exit 0 +for x in /boot/vmlinuz-*;do /usr/lib/dkms/dkms_autoinstaller start ${x#/boot/vmlinuz-}; done |