summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2020-10-30 18:22:46 +0000
committerMitchell Horne <mhorne@FreeBSD.org>2020-10-30 18:22:46 +0000
commite0f9cec7d6e1debaf5f164453fcb79a5835d97d9 (patch)
tree6ed71696d652150e091269dd010711e0e8127f55 /release
parent1d76e25a67dc33464428bba05d28ac98a71ea47c (diff)
downloadsrc-test-e0f9cec7d6e1debaf5f164453fcb79a5835d97d9.tar.gz
src-test-e0f9cec7d6e1debaf5f164453fcb79a5835d97d9.zip
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
Notes
Notes: svn path=/head/; revision=367178
Diffstat (limited to 'release')
-rwxr-xr-xrelease/arm64/make-memstick.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/arm64/make-memstick.sh b/release/arm64/make-memstick.sh
index 958aa1ff60139..0cde77b018b8a 100755
--- a/release/arm64/make-memstick.sh
+++ b/release/arm64/make-memstick.sh
@@ -45,7 +45,7 @@ make_esp_file ${espfilename} ${fat32min} ${1}/boot/loader.efi
mkimg -s gpt \
-p efi:=${espfilename} \
- -p freebsd:=${2}.part \
+ -p freebsd-ufs:=${2}.part \
-o ${2}
rm ${espfilename}
rm ${2}.part