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.
56 lines
1.6 KiB
56 lines
1.6 KiB
#!/bin/bash
|
|
|
|
unset UBOOTWRAPPER
|
|
case "${DISTARCH}-${debian_boot}" in
|
|
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"
|
|
;;
|
|
utopic-armhf-netboot)
|
|
#22-Oct-2014
|
|
#http://ports.ubuntu.com/dists/utopic/main/installer-armhf/
|
|
NETIMAGE="20101020ubuntu352"
|
|
TEST_MD5SUM="555817254340b610e7b947526b1dc315"
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
vivid-armhf-netboot)
|
|
#22-Oct-2014
|
|
#http://ports.ubuntu.com/dists/vivid/main/installer-armhf/
|
|
#FIXME: add dir/date/md5sum when vivid is released..
|
|
# NETIMAGE="20101020ubuntu352"
|
|
NETIMAGE="current"
|
|
# TEST_MD5SUM="555817254340b610e7b947526b1dc315"
|
|
TEST_MD5SUM="x"
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
wheezy-armhf-netboot)
|
|
#05-Jan-2015
|
|
#http://ftp.us.debian.org/debian/dists/wheezy/main/installer-armhf/
|
|
NETIMAGE="20130613+deb7u2+b4"
|
|
TEST_MD5SUM="5378254712c01b0c9a8c03b7263be15e"
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
BASE_IMAGE="mx5/netboot/efikamx"
|
|
UBOOTWRAPPER=1
|
|
NETINSTALL="uInitrd"
|
|
;;
|
|
jessie-armhf-netboot)
|
|
#07-Jan-2015
|
|
#http://ftp.us.debian.org/debian/dists/jessie/main/installer-armhf/
|
|
NETIMAGE="20150107"
|
|
TEST_MD5SUM="e8b33f422e6e8a82a4a940325b5b49af"
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
BASE_IMAGE="netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
esac
|
|
#
|