mx51evk booting stops at mountall
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Linaro Linux |
Invalid
|
Undecided
|
Unassigned | ||
linux-linaro (Ubuntu) |
Fix Released
|
High
|
John Rigby | ||
Maverick |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
The mx51evk headless booting stops at mountall and gives following error message on debug serial.
Freeing init memory: 100K
init: ureadahead main process (29) terminated with status 5
mount: wrong fs type, bad option, bad superblock on none,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
mountall: mount /var/run [38] terminated with status 32
mountall: Filesystem could not be mounted: /var/run
mount: wrong fs type, bad option, bad superblock on none,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
mountall: mount /var/lock [39] terminated with status 32
mountall: Filesystem could not be mounted: /var/lock
Changed in linux-linaro (Ubuntu): | |
milestone: | none → maverick-updates |
Changed in linux-linaro (Ubuntu): | |
status: | Fix Committed → Fix Released |
Adding the following filesystem supports can fix the the problem and get the booting into console.
CONFIG_TMPFS DEVTMPFS_ MOUNT
CONFIG_DEVTMPFS
CONFIG_
The patch is here.
diff --git a/arch/ arm/configs/ mx51_defconfig b/arch/ arm/configs/ mx51_defconfig arm/configs/ mx51_defconfig arm/configs/ mx51_defconfig IP_PNP_ DHCP=y DEVTMPFS_ MOUNT=y BLK_DEV_ LOOP=y CONFIGFS_ FS=m
index 30a0d59..25d5f58 100644
--- a/arch/
+++ b/arch/
@@ -40,6 +40,8 @@ CONFIG_
# CONFIG_INET_LRO is not set
# CONFIG_IPV6 is not set
# CONFIG_WIRELESS is not set
+CONFIG_DEVTMPFS=y
+CONFIG_
# CONFIG_STANDALONE is not set
CONFIG_CONNECTOR=y
CONFIG_
@@ -141,6 +143,7 @@ CONFIG_ZISOFS=y
CONFIG_UDF_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=y
+CONFIG_TMPFS=y
CONFIG_
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y