Nitin Bhardwaj: > Yes, I'm still using aufs 20080428 and /sbin/mount.aufs as is it... > Here are the debug outputs; The error comes in mounting /usr ( file usr.mount > ).
Thank you for your tests. I guess the problem comes from your sed command or busybox. If you have /bin/sed or something, try $ echo X-rated | /bin/sed -r -e 's/\r/\\015/g' And then try the same command in busybox, $ echo X-rated | busybox sed -r -e 's/\r/\\015/g' I am afraid your busybox-sed command will produce X-\015ated instead of X-rated Your /sbin/mount.aufs will not work correctly until your sed works correctly. Here is my suggestion. You can select one of them. - install /bin/sed too into your initramfs. - specify '-i' at mounting aufs newly since your /etc/mtab is a symbolic link. J. R. Okajima ------------------------------------------------------------------------------