summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-11-14 13:34:32 +0100
committerDirk von Suchodoletz2006-11-14 13:34:32 +0100
commitea17c69657e4944bcf92f18b84c44d87213d8733 (patch)
tree8ba1071eaebfe38a934bbbc5ae01a11b4c3fae26 /initramfs/initrd-stuff/etc/functions
parentAdd some specific hardware to be detected (NVidia graphics adaptor) (diff)
downloadcore-ea17c69657e4944bcf92f18b84c44d87213d8733.tar.gz
core-ea17c69657e4944bcf92f18b84c44d87213d8733.tar.xz
core-ea17c69657e4944bcf92f18b84c44d87213d8733.zip
tftp path issue, see documentation too (do not use the abs. path
in servers filesystem for tftp requests) ... git-svn-id: http://svn.openslx.org/svn/openslx/trunk@509 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/initrd-stuff/etc/functions')
-rw-r--r--initramfs/initrd-stuff/etc/functions24
1 files changed, 9 insertions, 15 deletions
diff --git a/initramfs/initrd-stuff/etc/functions b/initramfs/initrd-stuff/etc/functions
index bf8aff1f..9f647ff4 100644
--- a/initramfs/initrd-stuff/etc/functions
+++ b/initramfs/initrd-stuff/etc/functions
@@ -2,7 +2,7 @@
# (included by init, hwautocfg, servconfig, ... within OpenSLX initial
# ramfs)
#
-# Dirk von Suchodoletz <dvs@OpenSLX.com>, 31-10-2006
+# Dirk von Suchodoletz <dvs@OpenSLX.com>, 14-11-2006
# Felix Endres, 30-04-2006
# <mj0@uni-freiburg.de> (xenbr), 27-09-2006
# Tobias Maier
@@ -17,19 +17,19 @@
# distro specific funtion called at the beginning of init script
preinit () {
- :
+:
}
# distro specific funtion called at the end of init script
postinit () {
- :
+:
}
# distro specific general function called from servconfig script
config_distro () {
- :
+:
}
# udev/hotplug - auto device discovery service
udev_hotplug () {
- :
+:
}
@@ -450,16 +450,10 @@ if [ -n "$FILESRC" ] ; then
tftpserver=$(uri_token $FILESRC server)
tftpgetunpack $tftp $cfgfile $tftpserver
else
- # usually the tftp-server serves relative to $SLX_TFTPBOOT_PATH, however,
- # some tftp-servers aren't setup to do that but serve from / instead.
- # In order to remedy, we evaluate $SLX_USE_ABSOLUTE_TFTP_PATH in order
- # to find out if we should use the absolute path when accessing files
- # via tftp:
- #if [ "${slxconf_tftp_prefix}" -ge 1 ]; then
- # local cfgdir="${slxconf_tftp_prefix}/client-config"
- #else
- local cfgdir="client-config"
- #fi
+ # predefined value for openslx environment; it is expected that this
+ # directory is just below the tftpboot/tftproot (path to which the
+ # daemon is restricted to)
+ local cfgdir="client-config"
local tftpserver=$serverip
# try to get configuration files successively; start with distro client
# and try last distro default ...