summaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/local')
-rw-r--r--scripts/local6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/local b/scripts/local
index ffbd230..b322f09 100644
--- a/scripts/local
+++ b/scripts/local
@@ -3,7 +3,7 @@
# Parameter: Where to mount the filesystem
mountroot ()
{
- run_scripts /scripts/local_top
+ run_scripts /scripts/local-top
# Get the root filesystem type
if [ ! -e ${ROOT} ]; then
@@ -12,10 +12,10 @@ mountroot ()
eval $(fstype < ${ROOT})
- run_scripts /scripts/local_premount
+ run_scripts /scripts/local-premount
# Mount root
mount ${ro} -t ${FSTYPE} ${ROOT} ${rootmnt}
- run_scripts /scripts/local_bottom
+ run_scripts /scripts/local-bottom
}