From 230421384a6be1239b390fc12f73b0b223705609 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 9 Sep 2007 16:04:40 +0000 Subject: Allow people to specify a list of early mount points which will be mounted at the end of localmount so they can do tmpfs on things like /tmp #181527. --- init.d/localmount | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'init.d') diff --git a/init.d/localmount b/init.d/localmount index 06a1979f..589ee072 100755 --- a/init.d/localmount +++ b/init.d/localmount @@ -143,6 +143,12 @@ start() { eend $? fi + for x in ${EARLY_MOUNTS} ; do + ebegin "Early mounting ${x}" + mount ${x} + eend $? + done + # Always return 0 - some local mounts may not be critical for boot return 0 } -- cgit v1.2.3