FIRST:
I get the subject error when booting my DM6467EVM-derived custom board, Linux 2.6.32, DVSDK 03.10.00.11. Here's a console log:
[Thu Mar 22 17:49:57.422 2012] INIT: version 2.86 booting
[Thu Mar 22 17:49:59.004 2012] Please wait: booting...
[Thu Mar 22 17:49:59.372 2012] Remounting root file system...
[Thu Mar 22 17:49:59.698 2012] modprobe: FATAL: Could not open 'kernel/fs/minix/minix.ko': No such file or directory
[Thu Mar 22 17:49:59.699 2012]
[Thu Mar 22 17:49:59.913 2012] root: mount: mounting rootfs on / failed: No such file or directory
[Thu Mar 22 17:50:02.101 2012] Mon Mar 14 18:09:00 UTC 2011
[Thu Mar 22 17:50:02.132 2012] INIT: Entering runlevel: 5
I'm not sure, but between this and the next output line, it *might* be costing me 2 seconds of boot time, that I want to optimize out. I don't know what this "rootfs" is. Everything is running fine. File system is JFFS2 on NAND. I don't know if this is germane, but note that the "df" output is:
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 125568 19504 106064 16% /
tmpfs 16384 16 16368 0% /var/volatile
tmpfs 54788 0 54788 0% /dev/shm
tmpfs 16384 0 16384 0% /media/ram
I also get the same "mounting rootfs" error when I boot from nfs. I'm thinking "rootfs" is something I don't have, and I'd like to not try to mount it. I'm totally not sure. I'm very new at this kernel stuff.
SECOND:
If the two second delay from 17:49:59.913 to 17:50:02.101 is not due to this error, then what else might it be and how can I get rid of it.
THIRD:
That modprobe error doesn't appear to be costing me any boot time, and it doesn't appear to be harmful. As I mentioned, my system runs fine. Besides, that kernel/fs/minix/minix.ko path and file does INDEED exist at /lib/modules/2.6.32-MyCustomizedName/kernel/fs/minix/minix.ko. Note that 2.6.32-MyCustomizedName is the same as reported by U-Boot during kernel load, and there are no other modules claimed to be missing, so I believe the "-MyCustomizedName" shouldn't be the cause of the problem.
Thanks!