summaryrefslogtreecommitdiffstats
path: root/initramfs/stage3-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2009-07-19 15:43:36 +0200
committerDirk von Suchodoletz2009-07-19 15:43:36 +0200
commitf3e90ff3d1524896d40fd9160bbf69cd4acd99c2 (patch)
tree7cdbde389b54a9a2b496ed4793bff517176e2304 /initramfs/stage3-stuff/etc/functions
parentModified uclibc-wrapper to be used in stage4 too (see r3017). (diff)
downloadcore-f3e90ff3d1524896d40fd9160bbf69cd4acd99c2.tar.gz
core-f3e90ff3d1524896d40fd9160bbf69cd4acd99c2.tar.xz
core-f3e90ff3d1524896d40fd9160bbf69cd4acd99c2.zip
Updating several stage3 scripts, e.g. for the cifs mounting ...
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@3019 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/stage3-stuff/etc/functions')
-rw-r--r--initramfs/stage3-stuff/etc/functions11
1 files changed, 7 insertions, 4 deletions
diff --git a/initramfs/stage3-stuff/etc/functions b/initramfs/stage3-stuff/etc/functions
index 7eeb6d44..7731790c 100644
--- a/initramfs/stage3-stuff/etc/functions
+++ b/initramfs/stage3-stuff/etc/functions
@@ -145,7 +145,6 @@ case "${proto}" in
# autodetected here ... (vmimgserv is blockdev here)
vmbdev=/dev/${server}
waitfor ${vmbdev} 20000
- echo -e "ext2\nreiserfs\nvfat\nxfs" >/etc/filesystems
mount -o ro ${vmbdev} ${target} || error "$scfg_evmlm" nonfatal
;;
nfs)
@@ -160,8 +159,12 @@ case "${proto}" in
done
;;
smb|cifs)
- mount -n -o ${mntopt},user=guest,guest,file_mode=0755,dir_mode=0755 \
- -t ${proto} //${server}${srcpath} ${target}
+ # for some reason cifs mounts cannot be pivoted :(
+ #mount -n -o ${mntopt},user=guest,guest,file_mode=0755,dir_mode=0755 \
+ # -t ${proto} //${server}${srcpath} ${target}
+ d_mkrlscript entry boot.slx "uclibc-wrapper mount -n -o ${mntopt},guest,\
+user=guest,file_mode=0755,dir_mode=0755 -t ${proto} //${server}${srcpath} \
+${target#/mnt}"
;;
esac
}
@@ -985,7 +988,7 @@ config_printer () {
config_bt () {
:
}
-# create a compliant runlevel script, needed for boot.slx and vmware-prep
+# create a compliant runlevel script, needed for boot.slx
d_mkrlscript () {
:
}