commit 61077651424add644401b927b52681a191bbd7f1 moved the list of kernels above which broke the $TARGET substitutions in them. Move the TARGET detection above of everything to fix this. Signed-off-by: Ozan Çağlayan <ozancag@xxxxxxxxx> --- bin/get-compat-kernels | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/bin/get-compat-kernels b/bin/get-compat-kernels index d80c0a7..99392b4 100755 --- a/bin/get-compat-kernels +++ b/bin/get-compat-kernels @@ -23,6 +23,23 @@ UNDERLINE="\033[02m" KERNELS="" KPATH="http://kernel.ubuntu.com/~kernel-ppa/mainline/" +ARCH=$(uname -m) +TARGET="" + +case $ARCH in + "x86_64") + TARGET="amd64" + ;; + "i686") + TARGET="i386" + ;; + *) + echo -e "Unsupported architecture" + exit + ;; +esac + + KERNELS="$KERNELS ${KPATH}/v2.6.24/linux-headers-2.6.24-020624_2.6.24-020624_all.deb" KERNELS="$KERNELS ${KPATH}/v2.6.24/linux-headers-2.6.24-020624-generic_2.6.24-020624_${TARGET}.deb" KERNELS="$KERNELS ${KPATH}/v2.6.24/linux-image-2.6.24-020624-generic_2.6.24-020624_${TARGET}.deb" @@ -109,22 +126,6 @@ KERNELS="$KERNELS ${KPATH}/v3.4.4-quantal/linux-image-3.4.4-030404-generic_3.4.4 function get_ubuntu_kernels() { - ARCH=$(uname -m) - TARGET="" - - case $ARCH in - "x86_64") - TARGET="amd64" - ;; - "i686") - TARGET="i386" - ;; - *) - echo -e "Unsupported architecture" - exit - ;; - esac - mkdir -p debs cd debs -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html