svn commit: r282107 - head/release/arm64

Glen Barber gjb at FreeBSD.org
Mon Apr 27 18:07:12 UTC 2015


Author: gjb
Date: Mon Apr 27 18:07:11 2015
New Revision: 282107
URL: https://svnweb.freebsd.org/changeset/base/282107

Log:
  Do not nest the BSD and MBR partitions, which produces
  an unbootable image.  Use just an MBR scheme instead.
  
  Sponsored by:	The FreeBSD Foundation

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

Modified: head/release/arm64/make-memstick.sh
==============================================================================
--- head/release/arm64/make-memstick.sh	Mon Apr 27 18:01:52 2015	(r282106)
+++ head/release/arm64/make-memstick.sh	Mon Apr 27 18:07:11 2015	(r282107)
@@ -36,8 +36,6 @@ if [ $? -ne 0 ]; then
 fi
 rm ${1}/etc/fstab
 
-mkimg -s bsd -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2}.tmp
-mkimg -s mbr -p efi:=${1}/boot/boot1.efifat -p freebsd:=${2}.tmp -o ${2}
-rm ${2}.tmp
+mkimg -s mbr -p efi:=${1}/boot/boot1.efifat -p freebsd:=${2}.part -o ${2}
 rm ${2}.part
 


More information about the svn-src-all mailing list