summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/init
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-12-15 01:39:48 +0100
committerDirk von Suchodoletz2006-12-15 01:39:48 +0100
commitc6b758e562a15c23c991ce783a9f0b9dbb527601 (patch)
treefc57c53f69a32bccb71f5e6e8d47b758601ccb61 /initramfs/initrd-stuff/init
parentAutopoweroff if stuck in Stage3/initramfs. Unfortunately rather CPU (diff)
downloadcore-c6b758e562a15c23c991ce783a9f0b9dbb527601.tar.gz
core-c6b758e562a15c23c991ce783a9f0b9dbb527601.tar.xz
core-c6b758e562a15c23c991ce783a9f0b9dbb527601.zip
Added new busybox in new place (tools, Makefile, ...) Busybox has
modified switch_root (same as for run-init ...) Updated mkdxsinitrd for busybox usage (same has to be done for slxmkramfs when tested properly) Minor fixes ... git-svn-id: http://svn.openslx.org/svn/openslx/trunk@536 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/initrd-stuff/init')
-rwxr-xr-xinitramfs/initrd-stuff/init6
1 files changed, 4 insertions, 2 deletions
diff --git a/initramfs/initrd-stuff/init b/initramfs/initrd-stuff/init
index 097e8c15..b5630bdc 100755
--- a/initramfs/initrd-stuff/init
+++ b/initramfs/initrd-stuff/init
@@ -2,7 +2,7 @@
# main script for new type of initial ramdisk for OpenSLX linux diskless
# clients version 4
#
-# Dirk von Suchodoletz <dirk@goe.net>, 02-12-2006
+# Dirk von Suchodoletz <dirk@goe.net>, 15-12-2006
# <mj0@uni-freiburg.de> (xenbr), 27-09-2006
#
# (c) 2006 - RZ Universitaet Freiburg
@@ -535,7 +535,7 @@ waitfor /tmp/hwcfg 20000 || error "$init_errhw"
waitfor /tmp/svcfg 20000 || error "$init_errsw"
# IP configuration is made and should not be updated automatically, udevd
# should be killed if started within init
-killall -9 dhcpcd dhclient pump 2>/dev/null
+killall -9 dhcpcd dhclient pump udhcpc 2>/dev/null
cp /etc/machine-setup /mnt/etc
# post init for some distro specific (fixme!! more elegant solution)
@@ -577,3 +577,5 @@ unset BOOT_IMAGE KCMDLINE KERNEL MODPRV NWMODULES OLDPWD UDEVD_EVENT_TIMEOUT \
#strinstr "bash" "$(ls -la /bin/sh)" && EE="-c"
# new style of pivoting (exec -c would set an empty environment in bash)
exec run-init -c dev/console /mnt /sbin/init || error "$init_runinit"
+# run-init could be replaced with switch_root from busybox ...
+#exec switch_root -c dev/console /mnt /sbin/init || error "$init_runinit"