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

74 lines
2.1 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)
#24-Jun-2013
#http://ports.ubuntu.com/dists/saucy/main/installer-armhf/
NETIMAGE="20101020ubuntu244"
TEST_MD5SUM="280bb0f0f0fb2ef51fd5bae6b687025e"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="omap/netboot"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
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)
#1-May-2013
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armhf/
NETIMAGE="20130430"
TEST_MD5SUM="7ffc13bd61bb24e6315972eead33196d"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="mx5/netboot/efikamx"
UBOOTWRAPPER=1
NETINSTALL="uInitrd"
;;
esac