You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netinstall/lib/distro.conf

92 lines
2.7 KiB

#!/bin/bash
unset UBOOTWRAPPER
case "${DISTARCH}-${debian_boot}" in
oneiric-armel-netboot)
#08-Oct-2011
#http://ports.ubuntu.com/dists/oneiric/main/installer-armel/
NETIMAGE="current"
TEST_MD5SUM="3a8978191d7a0544e229de54e4cc8e76"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="linaro-vexpress/netboot"
NETINSTALL="initrd.gz"
;;
precise-armhf-netboot)
#23-Apr-2012
#http://ports.ubuntu.com/dists/precise/main/installer-armhf/
NETIMAGE="20101020ubuntu136"
TEST_MD5SUM="2b8a00ada904f3b2b72f3d92ccbaa830"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="omap/netboot"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
quantal-armhf-netboot)
#15-Oct-2012
#http://ports.ubuntu.com/dists/quantal/main/installer-armhf/
NETIMAGE="20101020ubuntu186"
TEST_MD5SUM="b1824b8f7be00d34ea97763525dd2cc5"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="omap/netboot"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
raring-armhf-netboot)
#16-Apr-2013
#http://ports.ubuntu.com/dists/raring/main/installer-armhf/
NETIMAGE="20101020ubuntu231"
TEST_MD5SUM="3bc34541b4396bc57c10ee52923f893b"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="omap/netboot"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
saucy-armhf-netboot)
#15-Oct-2013
#http://ports.ubuntu.com/dists/saucy/main/installer-armhf/
NETIMAGE="20101020ubuntu271"
TEST_MD5SUM="c510f2e9c4fb09f606376ccf0a78fc64"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="omap/netboot"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
trusty-armhf-netboot)
#14-Apr-2014
#http://ports.ubuntu.com/dists/trusty/main/installer-armhf/
NETIMAGE="20101020ubuntu317"
TEST_MD5SUM="e138d4c8f6093290b6f27ab0c9c1b1b9"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="generic/netboot"
NETINSTALL="initrd.gz"
;;
wheezy-armel-netboot)
#1-May-2013
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armel/
NETIMAGE="20130430"
TEST_MD5SUM="9b5342227109d48d64b0016618bfb6f0"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="versatile/netboot"
NETINSTALL="initrd.gz"
;;
wheezy-armhf-netboot)
#08-Feb-2014
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armhf/
NETIMAGE="20130613+deb7u1+b2"
TEST_MD5SUM="2b2df527d1813e58c59c7fe4d769c7fd"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="mx5/netboot/efikamx"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
jessie-armhf-netboot)
#08-Feb-2014
#http://ftp.us.debian.org/debian/dists/jessie/main/installer-armhf/
NETIMAGE="20140316"
TEST_MD5SUM="20f33daac341aeed83f1d2b5b814dac6"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="armmp/netboot"
NETINSTALL="initrd.gz"
;;
esac