summaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/local')
-rw-r--r--scripts/local25
1 files changed, 24 insertions, 1 deletions
diff --git a/scripts/local b/scripts/local
index e1da5c7..0c61ca3 100644
--- a/scripts/local
+++ b/scripts/local
@@ -101,7 +101,7 @@ pre_mountroot()
done
}
-mountroot()
+local_mount_root()
{
local_top
@@ -160,3 +160,26 @@ local_mount_fs()
# Mount filesystem
mount ${roflag} -t "${MNT_TYPE}" -o "${MNT_OPTS}" "$MNT_FSNAME" "${rootmnt}${MNT_DIR}"
}
+
+mountroot()
+{
+ local_mount_root
+}
+
+mount_top()
+{
+ # Note, also called directly in case it's overridden.
+ local_top
+}
+
+mount_premount()
+{
+ # Note, also called directly in case it's overridden.
+ local_premount
+}
+
+mount_bottom()
+{
+ # Note, also called directly in case it's overridden.
+ local_bottom
+}