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.
61 lines
1.8 KiB
61 lines
1.8 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"
|
|
;;
|
|
xenial-armhf-netboot)
|
|
#20-Apr-2016
|
|
#http://ports.ubuntu.com/dists/xenial/main/installer-armhf/
|
|
NETIMAGE="20101020ubuntu451"
|
|
TEST_MD5SUM="5d3660f70577ee27e894b2623f0f6fc2"
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
yakkety-armhf-netboot)
|
|
#20-Apr-2016
|
|
#http://ports.ubuntu.com/dists/yakkety/main/installer-armhf/
|
|
NETIMAGE="20101020ubuntu483"
|
|
TEST_MD5SUM="a57b16aadf7c671e8e0a73c4fe66140d"
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
zesty-armhf-netboot)
|
|
#20-Apr-2016
|
|
#http://ports.ubuntu.com/dists/zesty/main/installer-armhf/
|
|
NETIMAGE="20101020ubuntu504"
|
|
TEST_MD5SUM="e623775d9160d3ddb4a106f221a07d10"
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
jessie-armhf-netboot)
|
|
#05-Dec-2017
|
|
#http://ftp.us.debian.org/debian/dists/jessie/main/installer-armhf/
|
|
NETIMAGE="20150422+deb8u4+b5"
|
|
TEST_MD5SUM="767de021461b582bb0c03314a43a85b9"
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
BASE_IMAGE="netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
stretch-armhf-netboot)
|
|
#05-Dec-2017
|
|
#http://ftp.us.debian.org/debian/dists/stretch/main/installer-armhf/
|
|
NETIMAGE="20170615+deb9u2+b1"
|
|
TEST_MD5SUM="04e26c6bc5e28f60b03467a26729c836"
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
BASE_IMAGE="netboot"
|
|
NETINSTALL="initrd.gz"
|
|
;;
|
|
esac
|
|
#
|