diff options
Diffstat (limited to 'config/chroot_local-hooks')
-rwxr-xr-x | config/chroot_local-hooks/05-ndis | 6 | ||||
-rwxr-xr-x | config/chroot_local-hooks/ZZ_cleanup_build.conf | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/05-ndis b/config/chroot_local-hooks/05-ndis index 306c6d5..c6bebff 100755 --- a/config/chroot_local-hooks/05-ndis +++ b/config/chroot_local-hooks/05-ndis @@ -1,3 +1,9 @@ #!/bin/sh +[ -f /root/build.conf ] && . /root/build.conf +if [ "$LH_ARCHITECTURE" = "amd64" ]; then wget -qO- http://kanotix.com/files/fix/ndiswrapper/ndiswrapper64-fwlan64.tar.gz|tar zxC /etc +else +wget -qO- http://kanotix.com/files/fix/ndiswrapper/ndiswrapper-fwlan.tar.gz|tar zxC /etc +#wget -qO- http://kanotix.com/files/fix/ndiswrapper/ndiswrapper-netmw225.tar.gz|tar zxC /etc +fi ndiswrapper -ma diff --git a/config/chroot_local-hooks/ZZ_cleanup_build.conf b/config/chroot_local-hooks/ZZ_cleanup_build.conf new file mode 100755 index 0000000..80e90ab --- /dev/null +++ b/config/chroot_local-hooks/ZZ_cleanup_build.conf @@ -0,0 +1,3 @@ +#!/bin/sh +rm -f /root/build.conf + |