diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-06 02:26:29 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-06 02:26:29 +0200 |
commit | 0e9c680b1c39584c902b488b461d7a45aaa8a946 (patch) | |
tree | 3dd756e6cfe2ff16ff0b349b87fe6fd2893a05c2 /auto/config | |
parent | e4c21b3c01ba37cec58076d17ba123b83dd52ccd (diff) | |
download | kanotix-0e9c680b1c39584c902b488b461d7a45aaa8a946.zip kanotix-0e9c680b1c39584c902b488b461d7a45aaa8a946.tar.gz |
moved downloading of nvidia-drivers from config to build
Diffstat (limited to 'auto/config')
-rwxr-xr-x | auto/config | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/auto/config b/auto/config index d3e8652..5441557 100755 --- a/auto/config +++ b/auto/config @@ -57,15 +57,3 @@ mkdir -p config/chroot_local-includes/usr/local/bin grep -oe '^[^ #]*' scripts.urls | wget -i- -c -N -q -P config/chroot_local-includes/usr/local/bin chmod 755 config/chroot_local-includes/usr/local/bin/*.sh -# Include nvidia-driver into chroot -if [ -f config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh ]; then - mkdir -p config/chroot_local-includes/usr/src - VER="$(grep -o ^VER=.* config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh|sed s/VER=//)" - ARCH=; [ "$LH_ARCHITECTURE" = "amd64" ] && ARCH="_64" - URL="http://download.nvidia.com/XFree86/Linux-x86$ARCH/$VER/NVIDIA-Linux-x86$ARCH-$VER.run" - CACHEURL="cache/$(basename "$URL")" - [ "$LH_CACHE" = "false" ] && CACHEURL="config/chroot_local-includes/usr/src/$(basename "$URL")" - [ ! -e "$CACHEURL" ] && wget -O"$CACHEURL" "$URL" - cp "$CACHEURL" "config/chroot_local-includes/usr/src/$(basename "$URL")" 2>/dev/null -fi - |