summaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
authorJeff Bailey <jbailey@ubuntu.com>2005-06-13 01:40:55 +0000
committerJeff Bailey <jbailey@ubuntu.com>2005-06-13 01:40:55 +0000
commit8d503582491ccf26b6925e5eb7cf77d9158fc65b (patch)
tree57df4afca9aad0585a23aced340eaa453247bf4d /scripts/local
parentb1efb2876bac0e27aac5ff55200a4a7cc83042a0 (diff)
downloadinitramfs-tools-8d503582491ccf26b6925e5eb7cf77d9158fc65b.tar.gz
initramfs-tools-8d503582491ccf26b6925e5eb7cf77d9158fc65b.zip
Update with new dependancy based init system, call the right script directories, always use busybox now, sigh.
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
}