16dcef0cfSNathan Whitehorn#!/bin/sh 26dcef0cfSNathan Whitehorn#- 36dcef0cfSNathan Whitehorn# Copyright (c) 2011 Nathan Whitehorn 46dcef0cfSNathan Whitehorn# All rights reserved. 56dcef0cfSNathan Whitehorn# 66dcef0cfSNathan Whitehorn# Redistribution and use in source and binary forms, with or without 76dcef0cfSNathan Whitehorn# modification, are permitted provided that the following conditions 86dcef0cfSNathan Whitehorn# are met: 96dcef0cfSNathan Whitehorn# 1. Redistributions of source code must retain the above copyright 106dcef0cfSNathan Whitehorn# notice, this list of conditions and the following disclaimer. 116dcef0cfSNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright 126dcef0cfSNathan Whitehorn# notice, this list of conditions and the following disclaimer in the 136dcef0cfSNathan Whitehorn# documentation and/or other materials provided with the distribution. 146dcef0cfSNathan Whitehorn# 156dcef0cfSNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 166dcef0cfSNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 176dcef0cfSNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 186dcef0cfSNathan Whitehorn# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 196dcef0cfSNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 206dcef0cfSNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 216dcef0cfSNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 226dcef0cfSNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 236dcef0cfSNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 246dcef0cfSNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 256dcef0cfSNathan Whitehorn# SUCH DAMAGE. 266dcef0cfSNathan Whitehorn# 276dcef0cfSNathan Whitehorn# $FreeBSD$ 286dcef0cfSNathan Whitehorn 296dcef0cfSNathan Whitehorn: ${DIALOG_OK=0} 306dcef0cfSNathan Whitehorn: ${DIALOG_CANCEL=1} 316dcef0cfSNathan Whitehorn: ${DIALOG_HELP=2} 326dcef0cfSNathan Whitehorn: ${DIALOG_EXTRA=3} 336dcef0cfSNathan Whitehorn: ${DIALOG_ITEM_HELP=4} 346dcef0cfSNathan Whitehorn: ${DIALOG_ESC=255} 356dcef0cfSNathan Whitehorn 366dcef0cfSNathan Whitehornexec 3>&1 376dcef0cfSNathan WhitehornMIRROR=`dialog --backtitle "FreeBSD Installer" \ 386dcef0cfSNathan Whitehorn --title "Mirror Selection" --extra-button --extra-label "Other" \ 396dcef0cfSNathan Whitehorn --menu "Please select the site closest to you or \"other\" if you'd like to specify a different choice. Also note that not every site listed here carries more than the base distribution kits. Only Primary sites are guaranteed to carry the full range of possible distributions. Select a site that's close!" \ 406dcef0cfSNathan Whitehorn 0 0 0 \ 416dcef0cfSNathan Whitehorn ftp://ftp.freebsd.org "Main Site"\ 426dcef0cfSNathan Whitehorn ftp://ftp.freebsd.org "IPv6 Main Site"\ 436dcef0cfSNathan Whitehorn ftp://ftp3.ie.freebsd.org "IPv6 Ireland"\ 446dcef0cfSNathan Whitehorn ftp://ftp2.jp.freebsd.org "IPv6 Japan"\ 45c9c00408SChristian Brueffer ftp://ftp4.se.freebsd.org "IPv6 Sweden"\ 466dcef0cfSNathan Whitehorn ftp://ftp4.us.freebsd.org "IPv6 USA"\ 476dcef0cfSNathan Whitehorn ftp://ftp2.tr.freebsd.org "IPv6 Turkey"\ 486dcef0cfSNathan Whitehorn ftp://ftp1.freebsd.org "Primary"\ 496dcef0cfSNathan Whitehorn ftp://ftp2.freebsd.org "Primary #2"\ 506dcef0cfSNathan Whitehorn ftp://ftp3.freebsd.org "Primary #3"\ 516dcef0cfSNathan Whitehorn ftp://ftp4.freebsd.org "Primary #4"\ 526dcef0cfSNathan Whitehorn ftp://ftp5.freebsd.org "Primary #5"\ 536dcef0cfSNathan Whitehorn ftp://ftp6.freebsd.org "Primary #6"\ 546dcef0cfSNathan Whitehorn ftp://ftp7.freebsd.org "Primary #7"\ 556dcef0cfSNathan Whitehorn ftp://ftp10.freebsd.org "Primary #10"\ 566dcef0cfSNathan Whitehorn ftp://ftp11.freebsd.org "Primary #11"\ 576dcef0cfSNathan Whitehorn ftp://ftp12.freebsd.org "Primary #12"\ 586dcef0cfSNathan Whitehorn ftp://ftp13.freebsd.org "Primary #13"\ 596dcef0cfSNathan Whitehorn ftp://ftp14.freebsd.org "Primary #14"\ 60a6df4068SGavin Atkinson ftp://ftp1.am.freebsd.org "Armenia"\ 616dcef0cfSNathan Whitehorn ftp://ftp.au.freebsd.org "Australia"\ 626dcef0cfSNathan Whitehorn ftp://ftp2.au.freebsd.org "Australia #2"\ 636dcef0cfSNathan Whitehorn ftp://ftp3.au.freebsd.org "Australia #3"\ 646dcef0cfSNathan Whitehorn ftp://ftp.at.freebsd.org "Austria"\ 656dcef0cfSNathan Whitehorn ftp://ftp2.br.freebsd.org "Brazil #2"\ 666dcef0cfSNathan Whitehorn ftp://ftp3.br.freebsd.org "Brazil #3"\ 676dcef0cfSNathan Whitehorn ftp://ftp4.br.freebsd.org "Brazil #4"\ 686dcef0cfSNathan Whitehorn ftp://ftp.ca.freebsd.org "Canada"\ 696dcef0cfSNathan Whitehorn ftp://ftp.cn.freebsd.org "China"\ 706dcef0cfSNathan Whitehorn ftp://ftp.cz.freebsd.org "Czech Republic"\ 716dcef0cfSNathan Whitehorn ftp://ftp.dk.freebsd.org "Denmark"\ 726dcef0cfSNathan Whitehorn ftp://ftp.ee.freebsd.org "Estonia"\ 736dcef0cfSNathan Whitehorn ftp://ftp.fi.freebsd.org "Finland"\ 746dcef0cfSNathan Whitehorn ftp://ftp.fr.freebsd.org "France"\ 756dcef0cfSNathan Whitehorn ftp://ftp3.fr.freebsd.org "France #3"\ 764e355d39SOllivier Robert ftp://ftp4.fr.freebsd.org "IPv6 France #4"\ 776dcef0cfSNathan Whitehorn ftp://ftp5.fr.freebsd.org "France #5"\ 786dcef0cfSNathan Whitehorn ftp://ftp6.fr.freebsd.org "France #6"\ 79a6df4068SGavin Atkinson ftp://ftp7.fr.freebsd.org "France #7"\ 80f58d163aSOllivier Robert ftp://ftp8.fr.freebsd.org "IPv6 France #8"\ 816dcef0cfSNathan Whitehorn ftp://ftp.de.freebsd.org "Germany"\ 826dcef0cfSNathan Whitehorn ftp://ftp2.de.freebsd.org "Germany #2"\ 836dcef0cfSNathan Whitehorn ftp://ftp4.de.freebsd.org "Germany #4"\ 846dcef0cfSNathan Whitehorn ftp://ftp5.de.freebsd.org "Germany #5"\ 856dcef0cfSNathan Whitehorn ftp://ftp6.de.freebsd.org "Germany #6"\ 866dcef0cfSNathan Whitehorn ftp://ftp7.de.freebsd.org "Germany #7"\ 876dcef0cfSNathan Whitehorn ftp://ftp8.de.freebsd.org "Germany #8"\ 886dcef0cfSNathan Whitehorn ftp://ftp.gr.freebsd.org "Greece"\ 896dcef0cfSNathan Whitehorn ftp://ftp2.gr.freebsd.org "Greece #2"\ 906dcef0cfSNathan Whitehorn ftp://ftp3.ie.freebsd.org "Ireland #3"\ 916dcef0cfSNathan Whitehorn ftp://ftp.il.freebsd.org "Israel"\ 926dcef0cfSNathan Whitehorn ftp://ftp.it.freebsd.org "Italy"\ 936dcef0cfSNathan Whitehorn ftp://ftp.jp.freebsd.org "Japan"\ 946dcef0cfSNathan Whitehorn ftp://ftp2.jp.freebsd.org "Japan #2"\ 956dcef0cfSNathan Whitehorn ftp://ftp3.jp.freebsd.org "Japan #3"\ 966dcef0cfSNathan Whitehorn ftp://ftp4.jp.freebsd.org "Japan #4"\ 976dcef0cfSNathan Whitehorn ftp://ftp5.jp.freebsd.org "Japan #5"\ 986dcef0cfSNathan Whitehorn ftp://ftp6.jp.freebsd.org "Japan #6"\ 996dcef0cfSNathan Whitehorn ftp://ftp7.jp.freebsd.org "Japan #7"\ 1006dcef0cfSNathan Whitehorn ftp://ftp8.jp.freebsd.org "Japan #8"\ 1016dcef0cfSNathan Whitehorn ftp://ftp9.jp.freebsd.org "Japan #9"\ 1026dcef0cfSNathan Whitehorn ftp://ftp.kr.freebsd.org "Korea"\ 1036dcef0cfSNathan Whitehorn ftp://ftp2.kr.freebsd.org "Korea #2"\ 104a6df4068SGavin Atkinson ftp://ftp.lv.freebsd.org "Latvia"\ 1056dcef0cfSNathan Whitehorn ftp://ftp.lt.freebsd.org "Lithuania"\ 1066dcef0cfSNathan Whitehorn ftp://ftp.nl.freebsd.org "Netherlands"\ 1076dcef0cfSNathan Whitehorn ftp://ftp2.nl.freebsd.org "Netherlands #2"\ 108a6df4068SGavin Atkinson ftp://ftp.nz.freebsd.org "New Zealand"\ 1096dcef0cfSNathan Whitehorn ftp://ftp.no.freebsd.org "Norway"\ 1106dcef0cfSNathan Whitehorn ftp://ftp.pl.freebsd.org "Poland"\ 1116dcef0cfSNathan Whitehorn ftp://ftp2.pl.freebsd.org "Poland #2"\ 1126dcef0cfSNathan Whitehorn ftp://ftp.ru.freebsd.org "Russia"\ 1136dcef0cfSNathan Whitehorn ftp://ftp2.ru.freebsd.org "Russia #2"\ 1146dcef0cfSNathan Whitehorn ftp://ftp4.ru.freebsd.org "Russia #4"\ 115a6df4068SGavin Atkinson ftp://ftp5.ru.freebsd.org "Russia #5"\ 116a6df4068SGavin Atkinson ftp://ftp6.ru.freebsd.org "Russia #6"\ 1176dcef0cfSNathan Whitehorn ftp://ftp.sk.freebsd.org "Slovak Republic"\ 118a6df4068SGavin Atkinson ftp://ftp2.sk.freebsd.org "Slovak Republic #2"\ 1196dcef0cfSNathan Whitehorn ftp://ftp.si.freebsd.org "Slovenia"\ 1206dcef0cfSNathan Whitehorn ftp://ftp.za.freebsd.org "South Africa"\ 1216dcef0cfSNathan Whitehorn ftp://ftp2.za.freebsd.org "South Africa #2"\ 1226dcef0cfSNathan Whitehorn ftp://ftp4.za.freebsd.org "South Africa #4"\ 1236dcef0cfSNathan Whitehorn ftp://ftp.es.freebsd.org "Spain"\ 1246dcef0cfSNathan Whitehorn ftp://ftp3.es.freebsd.org "Spain #3"\ 1256dcef0cfSNathan Whitehorn ftp://ftp.se.freebsd.org "Sweden"\ 1266dcef0cfSNathan Whitehorn ftp://ftp2.se.freebsd.org "Sweden #2"\ 1276dcef0cfSNathan Whitehorn ftp://ftp3.se.freebsd.org "Sweden #3"\ 1286dcef0cfSNathan Whitehorn ftp://ftp4.se.freebsd.org "Sweden #4"\ 129b8c337a3SJoel Dahl ftp://ftp6.se.freebsd.org "Sweden #6"\ 1306dcef0cfSNathan Whitehorn ftp://ftp.ch.freebsd.org "Switzerland"\ 1316dcef0cfSNathan Whitehorn ftp://ftp.tw.freebsd.org "Taiwan"\ 1326dcef0cfSNathan Whitehorn ftp://ftp2.tw.freebsd.org "Taiwan #2"\ 1336dcef0cfSNathan Whitehorn ftp://ftp3.tw.freebsd.org "Taiwan #3"\ 1346dcef0cfSNathan Whitehorn ftp://ftp4.tw.freebsd.org "Taiwan #4"\ 1356dcef0cfSNathan Whitehorn ftp://ftp6.tw.freebsd.org "Taiwan #6"\ 1366dcef0cfSNathan Whitehorn ftp://ftp11.tw.freebsd.org "Taiwan #11"\ 1376dcef0cfSNathan Whitehorn ftp://ftp.uk.freebsd.org "UK"\ 1386dcef0cfSNathan Whitehorn ftp://ftp2.uk.freebsd.org "UK #2"\ 1396dcef0cfSNathan Whitehorn ftp://ftp3.uk.freebsd.org "UK #3"\ 1406dcef0cfSNathan Whitehorn ftp://ftp4.uk.freebsd.org "UK #4"\ 1416dcef0cfSNathan Whitehorn ftp://ftp5.uk.freebsd.org "UK #5"\ 1426dcef0cfSNathan Whitehorn ftp://ftp.ua.freebsd.org "Ukraine"\ 1436dcef0cfSNathan Whitehorn ftp://ftp7.ua.freebsd.org "Ukraine #7"\ 1446dcef0cfSNathan Whitehorn ftp://ftp1.us.freebsd.org "USA #1"\ 1456dcef0cfSNathan Whitehorn ftp://ftp2.us.freebsd.org "USA #2"\ 1466dcef0cfSNathan Whitehorn ftp://ftp3.us.freebsd.org "USA #3"\ 1476dcef0cfSNathan Whitehorn ftp://ftp4.us.freebsd.org "USA #4"\ 1486dcef0cfSNathan Whitehorn ftp://ftp5.us.freebsd.org "USA #5"\ 1496dcef0cfSNathan Whitehorn ftp://ftp6.us.freebsd.org "USA #6"\ 1506dcef0cfSNathan Whitehorn ftp://ftp8.us.freebsd.org "USA #8"\ 1516dcef0cfSNathan Whitehorn ftp://ftp10.us.freebsd.org "USA #10"\ 1526dcef0cfSNathan Whitehorn ftp://ftp11.us.freebsd.org "USA #11"\ 1536dcef0cfSNathan Whitehorn ftp://ftp13.us.freebsd.org "USA #13"\ 1546dcef0cfSNathan Whitehorn ftp://ftp14.us.freebsd.org "USA #14"\ 1556dcef0cfSNathan Whitehorn ftp://ftp15.us.freebsd.org "USA #15"\ 1566dcef0cfSNathan Whitehorn 2>&1 1>&3` 1576dcef0cfSNathan WhitehornMIRROR_BUTTON=$? 1586dcef0cfSNathan Whitehornexec 3>&- 1596dcef0cfSNathan Whitehorn 16039d4f2c6SGlen Barber_UNAME_R=`uname -r` 161*a382af08SDag-Erling Smørgrav_UNAME_R=${_UNAME_R%-p*} 16239d4f2c6SGlen Barber 16339d4f2c6SGlen Barbercase ${_UNAME_R} in 164c77936e7SGlen Barber *-CURRENT|*-STABLE|*-PRERELEASE) 16539d4f2c6SGlen Barber RELDIR="snapshots" 16639d4f2c6SGlen Barber ;; 16739d4f2c6SGlen Barber *) 16839d4f2c6SGlen Barber RELDIR="releases" 16939d4f2c6SGlen Barber ;; 17039d4f2c6SGlen Barberesac 17139d4f2c6SGlen Barber 17239d4f2c6SGlen BarberBSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}" 1736dcef0cfSNathan Whitehorn 1746dcef0cfSNathan Whitehorncase $MIRROR_BUTTON in 1756dcef0cfSNathan Whitehorn$DIALOG_CANCEL) 1766dcef0cfSNathan Whitehorn exit 1 1776dcef0cfSNathan Whitehorn ;; 1786dcef0cfSNathan Whitehorn$DIALOG_OK) 1796dcef0cfSNathan Whitehorn ;; 1806dcef0cfSNathan Whitehorn$DIALOG_EXTRA) 1816dcef0cfSNathan Whitehorn exec 3>&1 1826dcef0cfSNathan Whitehorn BSDINSTALL_DISTSITE=`dialog --backtitle "FreeBSD Installer" \ 1836dcef0cfSNathan Whitehorn --title "Mirror Selection" \ 1846dcef0cfSNathan Whitehorn --inputbox "Please enter the URL to an alternate FreeBSD mirror:" \ 1856dcef0cfSNathan Whitehorn 0 0 "$BSDINSTALL_DISTSITE" 2>&1 1>&3` 1866dcef0cfSNathan Whitehorn MIRROR_BUTTON=$? 1876dcef0cfSNathan Whitehorn exec 3>&- 1886dcef0cfSNathan Whitehorn test $MIRROR_BUTTON -eq 0 || exec $0 $@ 1896dcef0cfSNathan Whitehorn ;; 1906dcef0cfSNathan Whitehornesac 1916dcef0cfSNathan Whitehorn 1926dcef0cfSNathan Whitehornexport BSDINSTALL_DISTSITE 1936dcef0cfSNathan Whitehornecho $BSDINSTALL_DISTSITE >&2 194