diff options
Diffstat (limited to 'config/chroot_local-hooks/05-ndis')
-rwxr-xr-x | config/chroot_local-hooks/05-ndis | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/chroot_local-hooks/05-ndis b/config/chroot_local-hooks/05-ndis index 7b89a97..94b5534 100755 --- a/config/chroot_local-hooks/05-ndis +++ b/config/chroot_local-hooks/05-ndis @@ -1,6 +1,6 @@ #!/bin/sh [ -x /usr/sbin/ndiswrapper ] || exit 0 -[ -f /root/build.conf ] && . /root/build.conf +for file in /root/config/*; do [ -r $file ] && . $file; done if [ "$LB_ARCHITECTURE" = "amd64" ]; then wget -qO- http://kanotix.com/files/fix/ndiswrapper/ndiswrapper64-fwlan64.tar.gz|tar zxC /etc else |