mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
12 lines
184 B
Bash
12 lines
184 B
Bash
#!/bin/sh
|
|
|
|
if [ -e /proc ] && ! [ -e /proc/mounts ]; then
|
|
mount -t proc proc /proc
|
|
fi
|
|
|
|
if [ -e /sys ] && grep -q sysfs /proc/filesystems; then
|
|
mount sysfs /sys -t sysfs
|
|
fi
|
|
|
|
exit 0
|