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.
netinstall/lib/distro.conf

42 lines
1.1 KiB

#!/bin/bash
unset UBOOTWRAPPER
case "${DISTARCH}-${debian_boot}" in
trusty-armhf-netboot)
#http://ports.ubuntu.com/dists/trusty/main/installer-armhf/
NETIMAGE="current"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="generic/netboot"
NETINSTALL="initrd.gz"
;;
xenial-armhf-netboot)
#http://ports.ubuntu.com/dists/xenial/main/installer-armhf/
NETIMAGE="current"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="generic/netboot"
NETINSTALL="initrd.gz"
;;
bionic-armhf-netboot)
#http://ports.ubuntu.com/dists/bionic/main/installer-armhf/
NETIMAGE="current"
HTTP_IMAGE="http://ports.ubuntu.com/ubuntu-ports/dists"
BASE_IMAGE="generic/netboot"
NETINSTALL="initrd.gz"
;;
jessie-armhf-netboot)
#http://ftp.us.debian.org/debian/dists/jessie/main/installer-armhf/
NETIMAGE="current"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="netboot"
NETINSTALL="initrd.gz"
;;
stretch-armhf-netboot)
#http://ftp.us.debian.org/debian/dists/stretch/main/installer-armhf/
NETIMAGE="current"
HTTP_IMAGE="http://ftp.debian.org/debian/dists"
BASE_IMAGE="netboot"
NETINSTALL="initrd.gz"
;;
esac
#