Hi. Im trying to construct a initramfs bootup, so far everything works fine except that the rootfs stays read only no matter what i do.
this is the start of the init script:
Code:
#!/bin/sh
export PATH=.:/bin:/sbin
mount -t proc proc /proc
mount -t sysfs sysfs /sys
mount -o remount,rw /
echo 0 >/proc/sys/kernel/printk
mdev -s
mkdir mountpoint
...
at the point where mdev -s is run, the filesystem is read only again and thus, it wont find the root device (since it cannot create /dev nodes).
Im using busybox 1.12.2.
Is there any particular configuration I need for busybox to make it mount read write all the time?