On Mon, Jul 18, 2011 at 7:55 PM, Bill Gatliff <[email protected]> wrote: > # cat /proc/filesystems | grep ubi > nodev ubifs > > # mount -t ubifs ubi0:nand0 /mnt > mount: unknown filesystem type 'ubifs'
Strange. There is no such string in busybox source anywhere. However, there is such string in util-linux mount. > If I boot the same kernel with parameters that allow the kernel to > find the UBIFS partition on its own, the kernel is able to do so. So > I don't think this is a kernel problem. > > Any ideas? I'm thinking that either the error message coming back > from mount is wrong, and/or the Busybox version of mount doesn't like > the fact that the UBIFS volume was created with Debian's mtd-utils > rather than Busybox itself. I'm investigating both of these now, but > I'm just wondering if anyone else is seeing similar issues--- or is > having any success in mounting UBIFS volumes from within Busybox. Check that you indeed use busybox's mount (use mount --help). Run mount with -r -vvv: "dry-run" + "verbose", and port the output. Run mount under strace: strace -o LOG mount .... and post LOG file. -- vda _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
