diff options
author | Daniel Baumann <daniel@debian.org> | 2009-04-26 21:44:08 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:44 +0100 |
commit | 695d3eedeed6d348c55752bdd5293178ff4848de (patch) | |
tree | 01efc4b199d9993d9324a9fdc3ace7a6a2ceaf35 | |
parent | 96718880690be4642d5552b03f7e44cee9dc36f2 (diff) | |
download | vyos-live-build-695d3eedeed6d348c55752bdd5293178ff4848de.tar.gz vyos-live-build-695d3eedeed6d348c55752bdd5293178ff4848de.zip |
Simplyfing architecture handling for d-i daily URLs.
-rwxr-xr-x | helpers/lh_binary_debian-installer | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 9cc3313db..6d415107b 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -259,22 +259,14 @@ then # Debian Installer daily builds case "${LH_ARCHITECTURE}" in - alpha) - URL="http://d-i.debian.org/daily-images/alpha/daily/" - ;; - - amd64) - URL="http://d-i.debian.org/daily-images/amd64/daily/" + alpha|amd64|hppa|mips|mipsel|powerpc) + URL="http://d-i.debian.org/daily-images/${LH_ARCHITECTURE}/daily/" ;; arm|armel) URL="http://people.debian.org/~kmuto/d-i/images/daily/" ;; - hppa) - URL="http://d-i.debian.org/daily-images/hppa/daily/" - ;; - i386) URL="http://people.debian.org/~joeyh/d-i/images/daily/" ;; @@ -287,18 +279,6 @@ then URL="http://people.debian.org/~smarenka/d-i/images-m68k/daily/" ;; - mips) - URL="http://d-i.debian.org/daily-images/mips/daily/" - ;; - - mipsel) - URL="http://d-i.debian.org/daily-images/mipsel/daily/" - ;; - - powerpc) - URL="http://d-i.debian.org/daily-images/powerpc/daily/" - ;; - s390) URL="http://lophos.multibuild.org/d-i/images/daily/" ;; |