summaryrefslogtreecommitdiffstats
path: root/initrd/initrd-stuff/etc
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-04-12 00:19:48 +0200
committerDirk von Suchodoletz2006-04-12 00:19:48 +0200
commit2ad560f708aef40729ec58cdc0d751f43594a98e (patch)
treef375e65c2039875ad118cc6b4815116481300002 /initrd/initrd-stuff/etc
parentBugfix: Swapped Vertical and Horizontal Frequency Ranges for displays that do... (diff)
downloadcore-2ad560f708aef40729ec58cdc0d751f43594a98e.tar.gz
core-2ad560f708aef40729ec58cdc0d751f43594a98e.tar.xz
core-2ad560f708aef40729ec58cdc0d751f43594a98e.zip
simplifications for union mounts in init (but problems still exist),
message output for nfs mounts changed ... git-svn-id: http://svn.openslx.org/svn/openslx/ld4@181 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/etc')
-rw-r--r--initrd/initrd-stuff/etc/functions27
-rw-r--r--initrd/initrd-stuff/etc/messages17
2 files changed, 24 insertions, 20 deletions
diff --git a/initrd/initrd-stuff/etc/functions b/initrd/initrd-stuff/etc/functions
index 2f2e3c0c..b7e7ecce 100644
--- a/initrd/initrd-stuff/etc/functions
+++ b/initrd/initrd-stuff/etc/functions
@@ -7,7 +7,7 @@
#
# Copyright: (c) 2006 - RZ Universitaet Freiburg
#
-# Version: 0.4.2c
+# Version: 0.4.2d
#######################################################################
# generate events with the sysfs trigger
@@ -56,9 +56,13 @@ if [ -n "$2" ] ; then
else
echo -e "${error_msg}${e_msg}${error_shell}"
/bin/sh
- echo "Rebooting now ..."
- usleep 5
- echo "b" > /proc/sysrq_trigger
+ echo -n "Reboot now? [y]"
+ read input
+# [ -z "$input" -o "$input" = "y" -o "$input" = "Y" ] && {
+# usleep 100
+# [ -f /proc/sysrq-trigger ] || mount -t proc none /proc
+# echo "b" > /proc/sysrq-trigger
+# }
fi
}
msg () {
@@ -152,12 +156,8 @@ nfsmnt ()
{
local nfsroot=$1
local dest=$2
-if [ -z "$dest" ] ; then
- dest="/mnt"
- e_nfs="$error_rnfs"
-else
- e_nfs="$error_gnfs"
-fi
+local ret=0
+[ -z "$dest" ] && dest="/mnt"
for mnt in nfsmount mount none; do
test -x /bin/$mnt && break;
done
@@ -165,17 +165,18 @@ done
loadmod /lib/modules/@@@KERNVER@@@/kernel/fs/nfs/nfs.ko "$error_modnfs"
case $mnt in
nfsmount)
- nfsmount -o ro $nfsroot $dest || error "$e_nfs"
+ nfsmount -o ro $nfsroot $dest || ret=1
;;
mount)
- portmap || error "$error_portm"
- mount -n -t nfs -o ro,nolock $nfsroot $dest || error "$e_nfs"
+ portmap || { echo "$error_portm"; ret=1; }
+ mount -n -t nfs -o ro,nolock $nfsroot $dest || ret=1
killall -9 portmap
;;
none)
error "$error_mntt"
;;
esac
+return $ret
}
#######################################################################
# create configuration file for dhclient
diff --git a/initrd/initrd-stuff/etc/messages b/initrd/initrd-stuff/etc/messages
index 59d416a9..d504d806 100644
--- a/initrd/initrd-stuff/etc/messages
+++ b/initrd/initrd-stuff/etc/messages
@@ -53,6 +53,12 @@ running\n kernel. If you do not want to see this message remove the token \
init_cownonbd=" Loading of cow module is of no sense if no network block \
device is used or\n UnionFS was specified as read write layer too. Remove \
UnionFS token from\n kernel commandline if cowloop should be used instead."
+init_nfs=" Mount of root filesystem via NFS was requested via kernel command \
+line\nbut failed. There might be the following reasons for that:\n\
+* No nfs.ko module could be loaded and no NFS support was present in the\n\
+running kernel - see error messages above\n\
+* You tried to mount from wrong server or path ($nfsroot)\n\
+* No NFS server is running or you do not have permissions"
init_ldcfg="Starting ldconfig - switch it off via kernel cmdline option \
'noldsc'"
init_errlog="Unable to create the logfile configuration in \
@@ -89,13 +95,6 @@ error_modnfs="needed for mounting rootfs"
error_iptool=" No tool for local IP configuration found. You should at \
least add\n one of the following programs to your ramdisk: ip \
ipconfig\n ifconfig."
-error_rnfs=" Mount of root filesystem via NFS was requested via kernel command \
-line\nbut failed. There might be the following reasons for that:\n\
-* No nfs.ko module could be loaded and no NFS support was present in the\n\
-running kernel - see error messages above\n\
-* You tried to mount from wrong server or path ($nfsroot)\n\
-* No NFS server is running or you do not have permissions"
-error_gnfs=" Mount of some NFS source failed ..."
error_portm=" Portmapper should be present, if normal mount \
command is used. Please\n check your initial ramdisk setup (mkdxsinitrd)."
error_mntt=" No suitable mount tool found."
@@ -130,3 +129,7 @@ df_erramnt=" Automounter $df_errserv"
df_erratpld=" Only toplevel directories \
are allowed as mount points for user home\n directories. Please set the \
variable \${automnt_dir} appropriately in\n machine-setup file."
+
+# messages from servconfig
+scfg_nfs=" Mount of some NFS source failed ..."
+