I found temporary solution to this. Here is my /init: --- #!/bin/ash umask 022 exec <dev/console >dev/console 2>&1 exec chroot . /sbin/init ---
and I modified rootfs in /etc/fstab as following / / tmpfs noatime 0 0 However, I encountered another problem. The initscripts shows the following messages: /lib/udev/modprobe.sh: /etc/init.d/functions.sh: line 10: declare: not found any suggestions?
