1#!/bin/sh
2
3do_mount_procfs() {
4	mount none /proc -t proc
5}
6
7