|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
unset rcn_ee_repo
|
|
|
|
unset UBOOTWRAPPER
|
|
|
|
case "${DISTARCH}-${debian_boot}" in
|
|
|
|
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"
|
|
|
|
;;
|
|
|
|
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)
|
|
|
|
#15-Apr-2014
|
|
|
|
#http://ports.ubuntu.com/dists/trusty/main/installer-armhf/
|
|
|
|
NETIMAGE="20101020ubuntu318"
|
|
|
|
TEST_MD5SUM="0888e3e43b6eb93638101cbe0c7f0730"
|
|
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
|
|
BASE_IMAGE="generic/netboot"
|
|
|
|
NETINSTALL="initrd.gz"
|
|
|
|
;;
|
|
|
|
wheezy-armhf-netboot)
|
|
|
|
#24-Apr-2014
|
|
|
|
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armhf/
|
|
|
|
NETIMAGE="20130613+deb7u2+b1"
|
|
|
|
TEST_MD5SUM="6a3a44be3a9b7cdf50a1cf94c1b5f176"
|
|
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
|
|
BASE_IMAGE="mx5/netboot/efikamx"
|
|
|
|
UBOOTWRAPPER=1
|
|
|
|
NETINSTALL="uInitrd"
|
|
|
|
rcn_ee_repo="enable"
|
|
|
|
;;
|
|
|
|
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"
|
|
|
|
rcn_ee_repo="enable"
|
|
|
|
;;
|
|
|
|
esac
|