xref: /OK3568_Linux_fs/buildroot/board/forlinx/common/security-system-overlay/etc/init.d/S00mount_sys.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2
3/bin/mount -t devtmpfs devtmpfs /dev
4/bin/mount -t proc proc /proc
5/bin/mount -t sysfs sysfs /sys
6/bin/mount -t tmpfs tmpfs /tmp
7
8mkdir -p /dev/shm
9mkdir -p /dev/pts
10
11/bin/mount -t tmpfs tmpfs /dev/shm
12/bin/mount -t devpts devpts /dev/pts
13