diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-08-30 18:23:36 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-08-30 18:23:36 +0000 |
commit | 29f67d2bd349cdaacfc425de53eb6630d894b64a (patch) | |
tree | f982642e9205db46b4edef6765934d029d45e3c4 /usr.sbin/bsdinstall/scripts/mirrorselect | |
parent | 36eedab3fc3fa038251a58071c411f9d42d975aa (diff) | |
download | FreeBSD-src-29f67d2bd349cdaacfc425de53eb6630d894b64a.zip FreeBSD-src-29f67d2bd349cdaacfc425de53eb6630d894b64a.tar.gz |
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)
Diffstat (limited to 'usr.sbin/bsdinstall/scripts/mirrorselect')
-rwxr-xr-x | usr.sbin/bsdinstall/scripts/mirrorselect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/mirrorselect b/usr.sbin/bsdinstall/scripts/mirrorselect index 9a83b8a..51c5a4b 100755 --- a/usr.sbin/bsdinstall/scripts/mirrorselect +++ b/usr.sbin/bsdinstall/scripts/mirrorselect @@ -191,7 +191,7 @@ MIRROR=`dialog --backtitle "FreeBSD Installer" \ MIRROR_BUTTON=$? exec 3>&- -BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/releases/`uname -p`/`uname -m`/`uname -r`" +BSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/releases/`uname -m`/`uname -p`/`uname -r`" case $MIRROR_BUTTON in $DIALOG_CANCEL) |