svn commit: r333739 - stable/11/release/arm

Emmanuel Vadot manu at FreeBSD.org
Thu May 17 17:00:08 UTC 2018


Author: manu
Date: Thu May 17 17:00:07 2018
New Revision: 333739
URL: https://svnweb.freebsd.org/changeset/base/333739

Log:
  MFC r333737:
  
  release: arm: Format FAT partition as FAT16
  
  r332674 raised the size of the FAT partition from 2MB to 41MB for some
  boards. But we format them in FAT12 and this size appears to be to big
  for FAT12 and some SoC bootrom cannot cope with that.
  Format the msdosfs partition as FAT16,
  
  PR:             228285
  Approved by:	re (marius)

Modified:
  stable/11/release/arm/BEAGLEBONE.conf
  stable/11/release/arm/GUMSTIX.conf
  stable/11/release/arm/PANDABOARD.conf
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/release/arm/BEAGLEBONE.conf
==============================================================================
--- stable/11/release/arm/BEAGLEBONE.conf	Thu May 17 16:32:38 2018	(r333738)
+++ stable/11/release/arm/BEAGLEBONE.conf	Thu May 17 17:00:07 2018	(r333739)
@@ -8,7 +8,7 @@ EMBEDDED_TARGET="arm"
 EMBEDDEDBUILD=1
 EMBEDDEDPORTS="sysutils/u-boot-beaglebone"
 FAT_SIZE="41m"
-FAT_TYPE="12"
+FAT_TYPE="16"
 IMAGE_SIZE="1G"
 KERNEL="BEAGLEBONE"
 MD_ARGS="-x 63 -y 255"

Modified: stable/11/release/arm/GUMSTIX.conf
==============================================================================
--- stable/11/release/arm/GUMSTIX.conf	Thu May 17 16:32:38 2018	(r333738)
+++ stable/11/release/arm/GUMSTIX.conf	Thu May 17 17:00:07 2018	(r333739)
@@ -8,7 +8,7 @@ EMBEDDED_TARGET="arm"
 EMBEDDEDBUILD=1
 EMBEDDEDPORTS="sysutils/u-boot-duovero"
 FAT_SIZE="41m"
-FAT_TYPE="12"
+FAT_TYPE="16"
 IMAGE_SIZE="1G"
 KERNEL="GUMSTIX"
 MD_ARGS="-x 63 -y 255"

Modified: stable/11/release/arm/PANDABOARD.conf
==============================================================================
--- stable/11/release/arm/PANDABOARD.conf	Thu May 17 16:32:38 2018	(r333738)
+++ stable/11/release/arm/PANDABOARD.conf	Thu May 17 17:00:07 2018	(r333739)
@@ -8,7 +8,7 @@ EMBEDDED_TARGET="arm"
 EMBEDDEDBUILD=1
 EMBEDDEDPORTS="sysutils/u-boot-pandaboard"
 FAT_SIZE="41m"
-FAT_TYPE="12"
+FAT_TYPE="16"
 IMAGE_SIZE="1G"
 KERNEL="PANDABOARD"
 MD_ARGS="-x 63 -y 255"


More information about the svn-src-stable-11 mailing list