|
|
|
#!/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="20101020ubuntu230"
|
|
|
|
TEST_MD5SUM="360acdf3b552e49cac0323a68e91c63c"
|
|
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
|
|
BASE_IMAGE="omap/netboot"
|
|
|
|
UBOOTWRAPPER=1
|
|
|
|
NETINSTALL="uInitrd"
|
|
|
|
;;
|
|
|
|
squeeze-armel-netboot)
|
|
|
|
#26-Sep-2012: 6.0.4+b2
|
|
|
|
#http://ftp.us.debian.org/debian/dists/squeeze/main/installer-armel/
|
|
|
|
NETIMAGE="20110106+squeeze4+b2"
|
|
|
|
TEST_MD5SUM="8daf11d54b16527404837acda915f32a"
|
|
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
|
|
BASE_IMAGE="versatile/netboot"
|
|
|
|
NETINSTALL="initrd.gz"
|
|
|
|
;;
|
|
|
|
wheezy-armel-netboot)
|
|
|
|
#14-Nov-2012
|
|
|
|
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armel/
|
|
|
|
NETIMAGE="20130211"
|
|
|
|
TEST_MD5SUM="d6ba771538e58329d04504d491a84397"
|
|
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
|
|
BASE_IMAGE="versatile/netboot"
|
|
|
|
NETINSTALL="initrd.gz"
|
|
|
|
;;
|
|
|
|
wheezy-armhf-netboot)
|
|
|
|
#14-Nov-2012
|
|
|
|
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armhf/
|
|
|
|
NETIMAGE="20130211"
|
|
|
|
TEST_MD5SUM="46a4f9de68824c9852b89f3566b89a49"
|
|
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
|
|
BASE_IMAGE="mx5/netboot/efikamx"
|
|
|
|
UBOOTWRAPPER=1
|
|
|
|
NETINSTALL="uInitrd"
|
|
|
|
;;
|
|
|
|
esac
|