> What file must I modify in my root file system? > In ELDK, there is no file such as /etc/fstab or /etc/mtab. You can create a /etc/fstab and in your init script run `mount -a`. To mount sysfs the line for fstab is the following: none /sys sysfs defaults,noatime 0 0 or just use the mount command: mount -t sysfs sysfs /sys -Gabe