head	1.10;
access;
symbols
	RELENG_9_1_0_RELEASE:1.4.2.1.4.2
	RELENG_9_1:1.4.2.1.0.4
	RELENG_9_1_BP:1.4.2.1
	RELENG_9_0_0_RELEASE:1.4.2.1.2.1
	RELENG_9_0:1.4.2.1.0.2
	RELENG_9_0_BP:1.4.2.1
	RELENG_9:1.4.0.2
	RELENG_9_BP:1.4;
locks; strict;
comment	@# @;


1.10
date	2012.12.09.22.58.34;	author svnexp;	state Exp;
branches;
next	1.9;

1.9
date	2012.12.09.22.55.14;	author svnexp;	state Exp;
branches;
next	1.8;

1.8
date	2012.12.04.07.36.44;	author svnexp;	state Exp;
branches;
next	1.7;

1.7
date	2012.12.03.19.57.16;	author svnexp;	state Exp;
branches;
next	1.6;

1.6
date	2012.11.17.01.54.40;	author svnexp;	state Exp;
branches;
next	1.5;

1.5
date	2012.05.10.13.30.42;	author roberto;	state Exp;
branches;
next	1.4;

1.4
date	2011.09.10.09.40.00;	author brueffer;	state Exp;
branches
	1.4.2.1;
next	1.3;

1.3
date	2011.08.30.18.23.36;	author nwhitehorn;	state Exp;
branches;
next	1.2;

1.2
date	2011.08.05.15.02.17;	author roberto;	state Exp;
branches;
next	1.1;

1.1
date	2011.03.27.23.43.32;	author nwhitehorn;	state Exp;
branches;
next	;

1.4.2.1
date	2011.09.23.00.51.37;	author kensmith;	state Exp;
branches
	1.4.2.1.2.1
	1.4.2.1.4.1;
next	1.4.2.2;

1.4.2.2
date	2012.11.17.11.37.43;	author svnexp;	state Exp;
branches;
next	1.4.2.3;

1.4.2.3
date	2012.12.12.01.06.47;	author svnexp;	state Exp;
branches;
next	1.4.2.4;

1.4.2.4
date	2013.03.13.14.04.34;	author svnexp;	state Exp;
branches;
next	1.4.2.5;

1.4.2.5
date	2013.08.07.17.01.43;	author svnexp;	state Exp;
branches;
next	1.4.2.6;

1.4.2.6
date	2013.08.15.11.01.44;	author svnexp;	state Exp;
branches;
next	1.4.2.7;

1.4.2.7
date	2014.03.31.02.01.46;	author svnexp;	state Exp;
branches;
next	;

1.4.2.1.2.1
date	2011.11.11.04.20.22;	author kensmith;	state Exp;
branches;
next	1.4.2.1.2.2;

1.4.2.1.2.2
date	2012.11.17.08.37.39;	author svnexp;	state Exp;
branches;
next	;

1.4.2.1.4.1
date	2012.08.05.23.54.33;	author kensmith;	state Exp;
branches;
next	1.4.2.1.4.2;

1.4.2.1.4.2
date	2012.11.17.08.48.31;	author svnexp;	state Exp;
branches;
next	;


desc
@@


1.10
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/244059
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@#!/bin/sh
#-
# Copyright (c) 2011 Nathan Whitehorn
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD: head/usr.sbin/bsdinstall/scripts/mirrorselect 244059 2012-12-09 22:55:51Z gjb $

: ${DIALOG_OK=0}
: ${DIALOG_CANCEL=1}
: ${DIALOG_HELP=2}
: ${DIALOG_EXTRA=3}
: ${DIALOG_ITEM_HELP=4}
: ${DIALOG_ESC=255}

exec 3>&1
MIRROR=`dialog --backtitle "FreeBSD Installer" \
    --title "Mirror Selection" --extra-button --extra-label "Other" \
    --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!" \
    0 0 0 \
	ftp://ftp.freebsd.org	"Main Site"\
	ftp://ftp.freebsd.org 	"IPv6 Main Site"\
	ftp://ftp3.ie.freebsd.org 	"IPv6 Ireland"\
	ftp://ftp.il.freebsd.org 	"IPv6 Israel"\
	ftp://ftp2.jp.freebsd.org 	"IPv6 Japan"\
	ftp://ftp4.se.freebsd.org	"IPv6 Sweden"\
	ftp://ftp4.us.freebsd.org 	"IPv6 USA"\
	ftp://ftp2.tr.freebsd.org 	"IPv6 Turkey"\
	ftp://ftp1.freebsd.org 	"Primary"\
	ftp://ftp2.freebsd.org 	"Primary #2"\
	ftp://ftp3.freebsd.org 	"Primary #3"\
	ftp://ftp4.freebsd.org 	"Primary #4"\
	ftp://ftp5.freebsd.org 	"Primary #5"\
	ftp://ftp6.freebsd.org 	"Primary #6"\
	ftp://ftp7.freebsd.org 	"Primary #7"\
	ftp://ftp8.freebsd.org 	"Primary #8"\
	ftp://ftp9.freebsd.org 	"Primary #9"\
	ftp://ftp10.freebsd.org 	"Primary #10"\
	ftp://ftp11.freebsd.org 	"Primary #11"\
	ftp://ftp12.freebsd.org 	"Primary #12"\
	ftp://ftp13.freebsd.org 	"Primary #13"\
	ftp://ftp14.freebsd.org 	"Primary #14"\
	ftp://ftp.ar.freebsd.org 	"Argentina"\
	ftp://ftp.au.freebsd.org 	"Australia"\
	ftp://ftp2.au.freebsd.org 	"Australia #2"\
	ftp://ftp3.au.freebsd.org 	"Australia #3"\
	ftp://ftp.at.freebsd.org 	"Austria"\
	ftp://ftp2.at.freebsd.org 	"Austria #2"\
	ftp://ftp.br.freebsd.org 	"Brazil"\
	ftp://ftp2.br.freebsd.org 	"Brazil #2"\
	ftp://ftp3.br.freebsd.org 	"Brazil #3"\
	ftp://ftp4.br.freebsd.org 	"Brazil #4"\
	ftp://ftp5.br.freebsd.org 	"Brazil #5"\
	ftp://ftp6.br.freebsd.org 	"Brazil #6"\
	ftp://ftp7.br.freebsd.org 	"Brazil #7"\
	ftp://ftp.ca.freebsd.org 	"Canada"\
	ftp://ftp.cn.freebsd.org 	"China"\
	ftp://ftp2.cn.freebsd.org 	"China #2"\
	ftp://ftp.hr.freebsd.org 	"Croatia"\
	ftp://ftp.cz.freebsd.org 	"Czech Republic"\
	ftp://ftp.dk.freebsd.org 	"Denmark"\
	ftp://ftp2.dk.freebsd.org 	"Denmark #2"\
	ftp://ftp.ee.freebsd.org 	"Estonia"\
	ftp://ftp.fi.freebsd.org 	"Finland"\
	ftp://ftp.fr.freebsd.org 	"France"\
	ftp://ftp2.fr.freebsd.org 	"IPv6 France #2"\
	ftp://ftp3.fr.freebsd.org 	"France #3"\
	ftp://ftp4.fr.freebsd.org 	"IPv6 France #4"\
	ftp://ftp5.fr.freebsd.org 	"France #5"\
	ftp://ftp6.fr.freebsd.org 	"France #6"\
	ftp://ftp8.fr.freebsd.org 	"IPv6 France #8"\
	ftp://ftp.de.freebsd.org 	"Germany"\
	ftp://ftp2.de.freebsd.org 	"Germany #2"\
	ftp://ftp3.de.freebsd.org 	"Germany #3"\
	ftp://ftp4.de.freebsd.org 	"Germany #4"\
	ftp://ftp5.de.freebsd.org 	"Germany #5"\
	ftp://ftp6.de.freebsd.org 	"Germany #6"\
	ftp://ftp7.de.freebsd.org 	"Germany #7"\
	ftp://ftp8.de.freebsd.org 	"Germany #8"\
	ftp://ftp.gr.freebsd.org 	"Greece"\
	ftp://ftp2.gr.freebsd.org 	"Greece #2"\
	ftp://ftp.hu.freebsd.org 	"Hungary"\
	ftp://ftp.is.freebsd.org 	"Iceland"\
	ftp://ftp.ie.freebsd.org 	"Ireland"\
	ftp://ftp2.ie.freebsd.org 	"Ireland #2"\
	ftp://ftp3.ie.freebsd.org 	"Ireland #3"\
	ftp://ftp.il.freebsd.org 	"Israel"\
	ftp://ftp.it.freebsd.org 	"Italy"\
	ftp://ftp.jp.freebsd.org 	"Japan"\
	ftp://ftp2.jp.freebsd.org 	"Japan #2"\
	ftp://ftp3.jp.freebsd.org 	"Japan #3"\
	ftp://ftp4.jp.freebsd.org 	"Japan #4"\
	ftp://ftp5.jp.freebsd.org 	"Japan #5"\
	ftp://ftp6.jp.freebsd.org 	"Japan #6"\
	ftp://ftp7.jp.freebsd.org 	"Japan #7"\
	ftp://ftp8.jp.freebsd.org 	"Japan #8"\
	ftp://ftp9.jp.freebsd.org 	"Japan #9"\
	ftp://ftp.kr.freebsd.org 	"Korea"\
	ftp://ftp2.kr.freebsd.org 	"Korea #2"\
	ftp://ftp.lt.freebsd.org 	"Lithuania"\
	ftp://ftp.nl.freebsd.org 	"Netherlands"\
	ftp://ftp2.nl.freebsd.org 	"Netherlands #2"\
	ftp://ftp.no.freebsd.org 	"Norway"\
	ftp://ftp3.no.freebsd.org 	"Norway #3"\
	ftp://ftp.pl.freebsd.org 	"Poland"\
	ftp://ftp2.pl.freebsd.org 	"Poland #2"\
	ftp://ftp5.pl.freebsd.org 	"Poland #5"\
	ftp://ftp.pt.freebsd.org 	"Portugal"\
	ftp://ftp2.pt.freebsd.org 	"Portugal #2"\
	ftp://ftp4.pt.freebsd.org 	"Portugal #4"\
	ftp://ftp.ro.freebsd.org 	"Romania"\
	ftp://ftp.ru.freebsd.org 	"Russia"\
	ftp://ftp2.ru.freebsd.org 	"Russia #2"\
	ftp://ftp3.ru.freebsd.org 	"Russia #3"\
	ftp://ftp4.ru.freebsd.org 	"Russia #4"\
	ftp://ftp.sg.freebsd.org 	"Singapore"\
	ftp://ftp.sk.freebsd.org 	"Slovak Republic"\
	ftp://ftp.si.freebsd.org 	"Slovenia"\
	ftp://ftp2.si.freebsd.org 	"Slovenia #2"\
	ftp://ftp.za.freebsd.org 	"South Africa"\
	ftp://ftp2.za.freebsd.org 	"South Africa #2"\
	ftp://ftp3.za.freebsd.org 	"South Africa #3"\
	ftp://ftp4.za.freebsd.org 	"South Africa #4"\
	ftp://ftp.es.freebsd.org 	"Spain"\
	ftp://ftp2.es.freebsd.org 	"Spain #2"\
	ftp://ftp3.es.freebsd.org 	"Spain #3"\
	ftp://ftp.se.freebsd.org 	"Sweden"\
	ftp://ftp2.se.freebsd.org 	"Sweden #2"\
	ftp://ftp3.se.freebsd.org 	"Sweden #3"\
	ftp://ftp4.se.freebsd.org 	"Sweden #4"\
	ftp://ftp5.se.freebsd.org 	"Sweden #5"\
	ftp://ftp6.se.freebsd.org 	"Sweden #6"\
	ftp://ftp.ch.freebsd.org 	"Switzerland"\
	ftp://ftp2.ch.freebsd.org 	"Switzerland #2"\
	ftp://ftp.tw.freebsd.org 	"Taiwan"\
	ftp://ftp2.tw.freebsd.org 	"Taiwan #2"\
	ftp://ftp3.tw.freebsd.org 	"Taiwan #3"\
	ftp://ftp4.tw.freebsd.org 	"Taiwan #4"\
	ftp://ftp6.tw.freebsd.org 	"Taiwan #6"\
	ftp://ftp11.tw.freebsd.org 	"Taiwan #11"\
	ftp://ftp.tr.freebsd.org 	"Turkey"\
	ftp://ftp2.tr.freebsd.org 	"Turkey #2"\
	ftp://ftp.uk.freebsd.org 	"UK"\
	ftp://ftp2.uk.freebsd.org 	"UK #2"\
	ftp://ftp3.uk.freebsd.org 	"UK #3"\
	ftp://ftp4.uk.freebsd.org 	"UK #4"\
	ftp://ftp5.uk.freebsd.org 	"UK #5"\
	ftp://ftp6.uk.freebsd.org 	"UK #6"\
	ftp://ftp.ua.freebsd.org 	"Ukraine"\
	ftp://ftp2.ua.freebsd.org 	"Ukraine #2"\
	ftp://ftp5.ua.freebsd.org 	"Ukraine #5"\
	ftp://ftp6.ua.freebsd.org 	"Ukraine #6"\
	ftp://ftp7.ua.freebsd.org 	"Ukraine #7"\
	ftp://ftp8.ua.freebsd.org 	"Ukraine #8"\
	ftp://ftp1.us.freebsd.org 	"USA #1"\
	ftp://ftp2.us.freebsd.org 	"USA #2"\
	ftp://ftp3.us.freebsd.org 	"USA #3"\
	ftp://ftp4.us.freebsd.org 	"USA #4"\
	ftp://ftp5.us.freebsd.org 	"USA #5"\
	ftp://ftp6.us.freebsd.org 	"USA #6"\
	ftp://ftp7.us.freebsd.org 	"USA #7"\
	ftp://ftp8.us.freebsd.org 	"USA #8"\
	ftp://ftp9.us.freebsd.org 	"USA #9"\
	ftp://ftp10.us.freebsd.org 	"USA #10"\
	ftp://ftp11.us.freebsd.org 	"USA #11"\
	ftp://ftp12.us.freebsd.org 	"USA #12"\
	ftp://ftp13.us.freebsd.org 	"USA #13"\
	ftp://ftp14.us.freebsd.org 	"USA #14"\
	ftp://ftp15.us.freebsd.org 	"USA #15"\
    2>&1 1>&3`
MIRROR_BUTTON=$?
exec 3>&-

_UNAME_R=`uname -r`

case ${_UNAME_R} in
	*-CURRENT|*-STABLE|*-BETA*|*-PRERELEASE|*-RC*)
		RELDIR="snapshots"
		;;
	*)
		RELDIR="releases"
		;;
esac

BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}"

case $MIRROR_BUTTON in
$DIALOG_CANCEL)
	exit 1
	;;
$DIALOG_OK)
	;;
$DIALOG_EXTRA)
	exec 3>&1
	BSDINSTALL_DISTSITE=`dialog --backtitle "FreeBSD Installer" \
	    --title "Mirror Selection" \
	    --inputbox "Please enter the URL to an alternate FreeBSD mirror:" \
	    0 0 "$BSDINSTALL_DISTSITE" 2>&1 1>&3`
	MIRROR_BUTTON=$?
	exec 3>&-
	test $MIRROR_BUTTON -eq 0 || exec $0 $@@
	;;
esac

export BSDINSTALL_DISTSITE
echo $BSDINSTALL_DISTSITE >&2
@


1.9
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/244057
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdinstall/scripts/mirrorselect 244057 2012-12-09 22:53:53Z gjb $
d197 1
a197 1
	*-CURRENT|*-STABLE|*-PRERELEASE|*-RC*)
@


1.8
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/243854
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdinstall/scripts/mirrorselect 243854 2012-12-04 07:22:15Z joel $
d194 12
a205 1
BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/releases/`uname -m`/`uname -p`/`uname -r`"
@


1.7
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/243832
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdinstall/scripts/mirrorselect 243832 2012-12-03 19:55:00Z joel $
a41 1
	ftp://snapshots.jp.freebsd.org 	"Snapshots Server Japan"\
@


1.6
log
@Switching exporter and resync
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdinstall/scripts/mirrorselect 235228 2012-05-10 13:30:42Z roberto $
a42 1
	ftp://snapshots.se.freebsd.org 	"Snapshots Server Sweden"\
d153 1
@


1.5
log
@SVN rev 235228 on 2012-05-10 13:30:42Z by roberto

Add the IPv6 tag to ftp4.fr.freebsd.org.
@
text
@d27 1
a27 1
# $FreeBSD$
@


1.4
log
@SVN rev 225467 on 2011-09-10 09:40:00Z by brueffer

Add ftp4.se.freebsd.org to the IPv4 and IPv6 mirror lists.

PR:		157210, 157211
Submitted by:	Niclas Zeising <zeising@@lysator.liu.se>
Approved by:	re (kib)
@
text
@d90 1
a90 1
	ftp://ftp4.fr.freebsd.org 	"France #4"\
@


1.4.2.1
log
@SVN rev 225736 on 2011-09-23 00:51:37Z by kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by:	re (implicit)
@
text
@@


1.4.2.2
log
@## SVN ##
## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/ 242902
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r242902 | dteske | 2012-11-11 23:29:45 +0000 (Sun, 11 Nov 2012) | 10 lines
## SVN ##
## SVN ## Fix a regression introduced by SVN r211417 that saw the breakage of a feature
## SVN ## documented in usr.sbin/sysinstall/help/shortcuts.hlp (reproduced below):
## SVN ##
## SVN ## If /usr/sbin/sysinstall is linked to another filename, say
## SVN ## `/usr/local/bin/configPackages', then the basename will be used
## SVN ## as an implicit command name.
## SVN ##
## SVN ## Reviewed by:	adrian (co-mentor)
## SVN ## Approved by:	adrian (co-mentor)
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 225467 2011-09-10 09:40:00Z brueffer $
@


1.4.2.3
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/244131
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r244131 | gjb | 2012-12-12 01:05:19 +0000 (Wed, 12 Dec 2012) | 11 lines
## SVN ##
## SVN ## MFC r244057, r244059:
## SVN ##
## SVN ## r244057:
## SVN ##  Get 'uname -r' earlier, so it can be used to determine what branch is
## SVN ##  being run to set BSDINSTALL_DISTSITE accordingly.  This change allows
## SVN ##  non-RELEASE branches to use the FTP snapshots directory for bootonly.iso
## SVN ##  installations.
## SVN ##
## SVN ## r244059:
## SVN ##  Add missed BETA* to list.
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 244131 2012-12-12 01:05:19Z gjb $
d195 1
a195 12
_UNAME_R=`uname -r`

case ${_UNAME_R} in
	*-CURRENT|*-STABLE|*-BETA*|*-PRERELEASE|*-RC*)
		RELDIR="snapshots"
		;;
	*)
		RELDIR="releases"
		;;
esac

BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}"
@


1.4.2.4
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/248237
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 248237 2013-03-13 13:41:28Z nwhitehorn $
d42 2
d90 1
a90 1
	ftp://ftp4.fr.freebsd.org 	"IPv6 France #4"\
a153 1
	ftp://ftp6.se.freebsd.org 	"Sweden #6"\
@


1.4.2.5
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/254063
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 254063 2013-08-07 16:01:45Z dteske $
d44 1
d56 2
d63 1
a63 1
	ftp://ftp1.am.freebsd.org 	"Armenia"\
d68 2
d73 3
d78 2
d82 1
d86 1
a90 1
	ftp://ftp7.fr.freebsd.org 	"France #7"\
d94 1
d102 1
d104 2
a119 1
	ftp://ftp.lv.freebsd.org 	"Latvia"\
a122 1
	ftp://ftp.nz.freebsd.org 	"New Zealand"\
d124 1
d127 5
d134 1
d136 1
a136 2
	ftp://ftp5.ru.freebsd.org 	"Russia #5"\
	ftp://ftp6.ru.freebsd.org 	"Russia #6"\
a137 1
	ftp://ftp2.sk.freebsd.org 	"Slovak Republic #2"\
d139 1
d142 1
d145 1
d154 1
d161 2
d168 1
d170 3
d174 1
d181 1
d183 1
d186 1
@


1.4.2.6
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/254360
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 254360 2013-08-15 10:31:31Z gjb $
d165 1
a165 1
	*-CURRENT|*-STABLE|*-PRERELEASE)
@


1.4.2.7
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/263956
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdinstall/scripts/mirrorselect 263956 2014-03-31 01:04:40Z dteske $
d90 1
@


1.4.2.1.4.1
log
@SVN rev 239080 on 2012-08-05 23:54:33Z by kensmith

Copy stable/9 to releng/9.1 as part of the 9.1-RELEASE release process.

Approved by:	re (implicit)
@
text
@@


1.4.2.1.4.2
log
@Switch importer
@
text
@d27 1
a27 1
# $FreeBSD: releng/9.1/usr.sbin/bsdinstall/scripts/mirrorselect 225467 2011-09-10 09:40:00Z brueffer $
@


1.4.2.1.2.1
log
@SVN rev 227445 on 2011-11-11 04:20:22Z by kensmith

Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
cycle.

Approved by:	re (implicit)
@
text
@@


1.4.2.1.2.2
log
@Switch importer
@
text
@d27 1
a27 1
# $FreeBSD: releng/9.0/usr.sbin/bsdinstall/scripts/mirrorselect 225467 2011-09-10 09:40:00Z brueffer $
@


1.3
log
@SVN rev 225270 on 2011-08-30 18:23:36Z by nwhitehorn

Swap FTP paths to be MACHINE/MACHINE_ARCH instead of MACHINE_ARCH/MACHINE.
This follows what the output of make targets looks like, and reduces the
number of directories needed on the FTP server, since we now have only one
architecture with multiple machine types (i386, which has i386 and pc98),
but 3 machines with 9 architectures between them (powerpc, mips, and arm).

Requested by:	kensmith, bz
Approved by:	re(kensmith)
@
text
@d48 1
@


1.2
log
@SVN rev 224656 on 2011-08-05 15:02:17Z by roberto

Add back ftp4, a new machine has taken its place. ftp2 and ftp8 are both IPv6 capable
mirrors.  cvsup4/ftp4 have already been added to the handbook.

Reviewed by:	nathanw
Approved by:	re (kib)
@
text
@d194 1
a194 1
BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/releases/`uname -p`/`uname -m`/`uname -r`"
@


1.1
log
@SVN rev 220080 on 2011-03-27 23:43:32Z by nwhitehorn

Add mirror selection for FTP installs. To support TBEMD installs
(e.g. powerpc64), this looks in a slightly different default path than now,
specifying both $MACHINE and $MACHINE_ARCH:
MIRROR/pub/FreeBSD/releases/`uname -p`/`uname -m`/`uname -r`

How to handle TBEMD properly probably merits some more discussion, but,
since no such 9.0-CURRENT distfiles exist at the moment, all existing
mirrors presently fail anyway.
@
text
@d87 1
a87 1
	ftp://ftp2.fr.freebsd.org 	"France #2"\
d89 1
d92 1
a92 1
	ftp://ftp8.fr.freebsd.org 	"France #8"\
@

