svn commit: r282102 - head/release/arm64

Glen Barber gjb at FreeBSD.org
Mon Apr 27 17:39:41 UTC 2015


Author: gjb
Date: Mon Apr 27 17:39:40 2015
New Revision: 282102
URL: https://svnweb.freebsd.org/changeset/base/282102

Log:
  Generate the arm64/aarch64 memstick image as MBR instead of
  GPT.
  
  Boot tested by:	andrew
  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 17:33:00 2015	(r282101)
+++ head/release/arm64/make-memstick.sh	Mon Apr 27 17:39:40 2015	(r282102)
@@ -36,6 +36,8 @@ if [ $? -ne 0 ]; then
 fi
 rm ${1}/etc/fstab
 
-mkimg -s gpt -p efi:=${1}/boot/boot1.efifat -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2}
+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
 rm ${2}.part
 


More information about the svn-src-all mailing list