summaryrefslogtreecommitdiff
path: root/scripts/nfs
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/nfs
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/nfs')
-rw-r--r--scripts/nfs6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/nfs b/scripts/nfs
index d0f1600..9860ea7 100644
--- a/scripts/nfs
+++ b/scripts/nfs
@@ -2,7 +2,7 @@
# Paramter: Where the root should be mounted
mountroot ()
{
- run_scripts /scripts/nfs_top
+ run_scripts /scripts/nfs-top
ipconfig ${DEVICE}
. /tmp/net-${DEVICE}.conf
@@ -10,10 +10,10 @@ mountroot ()
NFSROOT=${ROOTSERVER}:${ROOTPATH}
fi
- run_scripts /scripts/nfs_premount
+ run_scripts /scripts/nfs-premount
nfsmount ${NFSROOT} ${rootmnt}
- run_scripts /scripts/nfs_bottom
+ run_scripts /scripts/nfs-bottom
}