svn commit: r283307 - head/release/i386

Glen Barber gjb at FreeBSD.org
Sat May 23 00:32:59 UTC 2015


Author: gjb
Date: Sat May 23 00:32:58 2015
New Revision: 283307
URL: https://svnweb.freebsd.org/changeset/base/283307

Log:
  Use mkimg(1) to create the i386 memstick images, similar to
  how is done for amd64.  The exception here is there is no
  EFI partition for i386.
  
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/i386/make-memstick.sh

Modified: head/release/i386/make-memstick.sh
==============================================================================
--- head/release/i386/make-memstick.sh	Fri May 22 23:55:59 2015	(r283306)
+++ head/release/i386/make-memstick.sh	Sat May 23 00:32:58 2015	(r283307)
@@ -29,20 +29,13 @@ if [ -e ${2} ]; then
 fi
 
 echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab
-makefs -B little -o label=FreeBSD_Install ${2} ${1}
+makefs -B little -o label=FreeBSD_Install ${2}.part ${1}
 if [ $? -ne 0 ]; then
 	echo "makefs failed"
 	exit 1
 fi
 rm ${1}/etc/fstab
 
-unit=$(mdconfig -a -t vnode -f ${2})
-if [ $? -ne 0 ]; then
-	echo "mdconfig failed"
-	exit 1
-fi
-gpart create -s BSD ${unit}
-gpart bootcode -b ${1}/boot/boot ${unit}
-gpart add -t freebsd-ufs ${unit}
-mdconfig -d -u ${unit}
+mkimg -s gpt -b ${1}/boot/pmbr -p freebsd-boot:=${1}/boot/gptboot -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2}
+rm ${2}.part
 


More information about the svn-src-head mailing list