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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to