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.
22 lines
714 B
22 lines
714 B
#!/bin/bash
|
|
|
|
unset UBOOTWRAPPER
|
|
NETIMAGE="current"
|
|
NETINSTALL="initrd.gz"
|
|
case "${DISTARCH}-${debian_boot}" in
|
|
trusty-armhf-netboot|xenial-armhf-netboot|bionic-armhf-netboot)
|
|
#http://ports.ubuntu.com/dists/trusty/main/installer-armhf/
|
|
#http://ports.ubuntu.com/dists/xenial/main/installer-armhf/
|
|
#http://ports.ubuntu.com/dists/bionic/main/installer-armhf/
|
|
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
|
|
BASE_IMAGE="generic/netboot"
|
|
;;
|
|
stretch-armhf-netboot|buster-armhf-netboot)
|
|
#http://ftp.us.debian.org/debian/dists/stretch/main/installer-armhf/
|
|
#http://ftp.us.debian.org/debian/dists/buster/main/installer-armhf/
|
|
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
|
|
BASE_IMAGE="netboot"
|
|
;;
|
|
esac
|
|
#
|