Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Oct 2020 18:22:46 +0000 (UTC)
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r367178 - head/release/arm64
Message-ID:  <202010301822.09UIMk52021421@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010301822.09UIMk52021421>