mirror of
git://git.yoctoproject.org/poky
synced 2026-05-21 12:08:58 +00:00
echo would fail if /sys is not mounted and boot would abort (From OE-Core rev: b8901336e72639342a1d784557043fa47a9d90ff) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
473 B
Bash
Executable File
22 lines
473 B
Bash
Executable File
#!/bin/sh
|
|
mount -t proc proc /proc
|
|
mount -t sysfs sysfs /sys
|
|
mount -t tmpfs tmpfs /dev -o size=64k,mode=0755
|
|
mkdir /dev/pts /dev/shm
|
|
chmod 777 /dev/shm
|
|
mount -t devpts devpts /dev/pts
|
|
touch /dev/mdev.seq
|
|
#sysctl -w kernel.hotplug=/sbin/mdev
|
|
echo "/sbin/mdev" > /proc/sys/kernel/hotplug
|
|
mdev -s
|
|
|
|
#
|
|
# We might have mounted something over /dev, see if /dev/initctl is there.
|
|
#
|
|
if test ! -p /dev/initctl
|
|
then
|
|
rm -f /dev/initctl
|
|
mknod -m 600 /dev/initctl p
|
|
fi
|
|
|