svn commit: r225270 - head/usr.sbin/bsdinstall/scripts

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Aug 30 18:23:37 UTC 2011


Author: nwhitehorn
Date: Tue Aug 30 18:23:36 2011
New Revision: 225270
URL: http://svn.freebsd.org/changeset/base/225270

Log:
  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)

Modified:
  head/usr.sbin/bsdinstall/scripts/mirrorselect

Modified: head/usr.sbin/bsdinstall/scripts/mirrorselect
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/mirrorselect	Tue Aug 30 17:21:55 2011	(r225269)
+++ head/usr.sbin/bsdinstall/scripts/mirrorselect	Tue Aug 30 18:23:36 2011	(r225270)
@@ -191,7 +191,7 @@ MIRROR=`dialog --backtitle "FreeBSD Inst
 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)


More information about the svn-src-head mailing list