Bug 187606 - Wandboard cannot mount root file system
Summary: Wandboard cannot mount root file system
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: arm (show other bugs)
Version: CURRENT
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-arm (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-15 13:50 UTC by tak.swd
Modified: 2014-03-15 17:10 UTC (History)
0 users

See Also:


Attachments
file.diff (865 bytes, patch)
2014-03-15 13:50 UTC, tak.swd
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tak.swd 2014-03-15 13:50:00 UTC
Wandboard cannot mount root file system.

r262905
http://svnweb.freebsd.org/base?view=revision&revision=262905
Wandboard related change is nothing.
GEOM_PART_BSD and GEOM_PART_MBR are missing.

Fix: Patch file attached.
(r262905 same change)

Patch attached with submission follows:
Comment 1 dfilter service freebsd_committer freebsd_triage 2014-03-15 17:00:00 UTC
Author: imp
Date: Sat Mar 15 16:59:57 2014
New Revision: 263207
URL: http://svnweb.freebsd.org/changeset/base/263207

Log:
  Fix wandboard to include tmpfs, mbr and bsd labels.
  
  PR: 187606
  Submitted by: Takanori Sawada

Modified:
  head/sys/arm/conf/WANDBOARD.common

Modified: head/sys/arm/conf/WANDBOARD.common
==============================================================================
--- head/sys/arm/conf/WANDBOARD.common	Sat Mar 15 14:58:48 2014	(r263206)
+++ head/sys/arm/conf/WANDBOARD.common	Sat Mar 15 16:59:57 2014	(r263207)
@@ -35,10 +35,13 @@ options  	NFSCL			# New Network Filesyst
 #options  	NFSD			# New Network Filesystem Server
 options  	NFSLOCKD		# Network Lock Manager
 options  	NFS_ROOT		# NFS usable as /, requires NFSCL
+options		TMPFS			# Efficient memory filesystem
 options  	MSDOSFS			# MSDOS Filesystem
 options  	CD9660			# ISO 9660 Filesystem
 #options  	PROCFS			# Process filesystem (requires PSEUDOFS)
 options  	PSEUDOFS		# Pseudo-filesystem framework
+options 	GEOM_PART_BSD		# BSD partition scheme
+options 	GEOM_PART_MBR		# MBR partition scheme
 options  	GEOM_PART_GPT		# GUID Partition Tables.
 options  	GEOM_LABEL		# Provides labelization
 options  	KTRACE			# ktrace(1) support
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 2 Warner Losh freebsd_committer freebsd_triage 2014-03-15 17:00:38 UTC
State Changed
From-To: open->closed

Just committed the fix. Thanks.