]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/initscripts/initscripts-1.0/sysfs.sh
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / initscripts / initscripts-1.0 / sysfs.sh
1 #!/bin/sh
2
3 if [ -e /proc ] && ! [ -e /proc/mounts ]; then
4   mount -t proc proc /proc
5 fi
6
7 if [ -e /sys ] && grep -q sysfs /proc/filesystems; then
8   mount sysfs /sys -t sysfs
9 fi
10
11 exit 0