From: nbd Date: Thu, 5 Jan 2006 01:41:29 +0000 (+0000) Subject: mount sysfs at boot on linux 2.6 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=be333fdd0a4d3ecce9370e7a1e6efbf4d43551a4;p=openwrt.git mount sysfs at boot on linux 2.6 git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2835 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/default/etc/preinit b/package/base-files/default/etc/preinit index ac9039ca71..f82823ec9c 100755 --- a/package/base-files/default/etc/preinit +++ b/package/base-files/default/etc/preinit @@ -21,4 +21,9 @@ mount_root ${FAILSAFE:+failsafe} { mount|grep "on / type jffs2" 1>&-; } || firstboot } +grep sysfs /proc/filesystems >&- 2>&- && { + mkdir -p /sys + mount -t sysfs none /sys +} + exec /sbin/init