repo.or.cz
/
linux_from_scratch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added man-patch.xml file
[linux_from_scratch.git]
/
bootscripts
/
rc.d
/
init.d
/
mountproc
blob
201887562f8926dc109b8ad2ced0984acd14320f
1
#!/bin/bash
2
# Begin $rc_base/init.d/mountproc
3
4
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
5
6
source
/
etc
/
sysconfig
/
rc
7
source
$rc_functions
8
9
echo
"Mounting proc file system..."
10
mount
/
proc
11
evaluate_retval
12
13
# End $rc_base/init.d/mountproc
14