* mountall.sh bugs
@ 2007-06-14 3:38 DAMWID
0 siblings, 0 replies; only message in thread
From: DAMWID @ 2007-06-14 3:38 UTC (permalink / raw)
To: openembedded-devel
Hi all,
The mountall.sh in initscripts-1.0 package use the following line to
mount all filesystem except nfs, smbfs, and ncpfs:
mount -at nonfs,nosmbfs,noncpfs 2>/dev/null
there are two problems here:
1) the arguments for -t option should be "nonfs,smbfs,ncpfs", the "no"
should be prefixed to the whole fstype list, not to each fstype.
2) currently, busybox does not support the "-t type1,type2" and "-t
notype1,type2" option, so this line actually does nothing at all.
The best way to resolve this problem is add above options support to
busybox. As a workaround, I replace this line with a simple "mount -a"
command, and it works for me.
B.R.
Damwid
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-14 3:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-14 3:38 mountall.sh bugs DAMWID
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.