svn commit: r367178 - head/release/arm64

Mitchell Horne mhorne at FreeBSD.org
Fri Oct 30 18:22:46 UTC 2020


Author: mhorne
Date: Fri Oct 30 18:22:46 2020
New Revision: 367178
URL: https://svnweb.freebsd.org/changeset/base/367178

Log:
  arm64: set the correct partition type in make-memstick.sh
  
  We create a UFS root filesystem using makefs(8), and later pass it to
  mkimg(1) when creating the final image. The correct partition type is
  freebsd-ufs; the freebsd parition type is for partitions containing a
  BSD disklabel.
  
  Reviewed by:	emaste
  MFC after:	2 weeks
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D26987

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

Modified: head/release/arm64/make-memstick.sh
==============================================================================
--- head/release/arm64/make-memstick.sh	Fri Oct 30 18:20:52 2020	(r367177)
+++ head/release/arm64/make-memstick.sh	Fri Oct 30 18:22:46 2020	(r367178)
@@ -45,7 +45,7 @@ make_esp_file ${espfilename} ${fat32min} ${1}/boot/loa
 
 mkimg -s gpt \
     -p efi:=${espfilename} \
-    -p freebsd:=${2}.part \
+    -p freebsd-ufs:=${2}.part \
     -o ${2}
 rm ${espfilename}
 rm ${2}.part


More information about the svn-src-head mailing list