svn commit: r247304 - head/sys/arm/conf

Tim Kientzle kientzle at FreeBSD.org
Tue Feb 26 04:59:03 UTC 2013


Author: kientzle
Date: Tue Feb 26 04:59:02 2013
New Revision: 247304
URL: http://svnweb.freebsd.org/changeset/base/247304

Log:
  RPi users might want to touch the boot partition, which is always FAT
  formatted on this board, so compile-in MSDOSFS.
  
  Comment out the compiled-in FDT and explain why.

Modified:
  head/sys/arm/conf/RPI-B

Modified: head/sys/arm/conf/RPI-B
==============================================================================
--- head/sys/arm/conf/RPI-B	Tue Feb 26 03:46:35 2013	(r247303)
+++ head/sys/arm/conf/RPI-B	Tue Feb 26 04:59:02 2013	(r247304)
@@ -42,6 +42,7 @@ options 	FFS			#Berkeley Fast Filesystem
 options 	SOFTUPDATES		#Enable FFS soft updates support
 options 	UFS_ACL			#Support for access control lists
 options 	UFS_DIRHASH		#Improve performance on big directories
+options 	MSDOSFS			#MSDOS Filesystem
 device		snp
 
 options 	NFSCL			#Network Filesystem Client
@@ -113,5 +114,7 @@ device		smsc
 
 # Flattened Device Tree
 options         FDT
-options         FDT_DTB_STATIC
-makeoptions     FDT_DTS_FILE=bcm2835-rpi-b.dts
+# Note:  DTB is normally loaded and modified by RPi boot loader, then
+# handed to kernel via U-Boot and ubldr.
+#options         FDT_DTB_STATIC
+#makeoptions     FDT_DTS_FILE=bcm2835-rpi-b.dts


More information about the svn-src-head mailing list