summaryrefslogtreecommitdiffstats
path: root/rescue/tree/etc/rc.sysinit
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-09-12 15:16:49 +0000
committerMystery Man <unknown@mandriva.org>2003-09-12 15:16:49 +0000
commite0a90440b5f10011c62a4ef2ad7ae53ee75eac56 (patch)
tree8fb507c45d54fb01a7532400679b607cb61e8f33 /rescue/tree/etc/rc.sysinit
parent83fc804615d6576d1da05e6b5ac955345914a035 (diff)
downloaddrakx-e0a90440b5f10011c62a4ef2ad7ae53ee75eac56.tar
drakx-e0a90440b5f10011c62a4ef2ad7ae53ee75eac56.tar.gz
drakx-e0a90440b5f10011c62a4ef2ad7ae53ee75eac56.tar.bz2
drakx-e0a90440b5f10011c62a4ef2ad7ae53ee75eac56.tar.xz
drakx-e0a90440b5f10011c62a4ef2ad7ae53ee75eac56.zip
This commit was manufactured by cvs2svn to create tag 'V9_2_11mdk'.V9_2_11mdk
Diffstat (limited to 'rescue/tree/etc/rc.sysinit')
-rwxr-xr-xrescue/tree/etc/rc.sysinit48
1 files changed, 0 insertions, 48 deletions
diff --git a/rescue/tree/etc/rc.sysinit b/rescue/tree/etc/rc.sysinit
deleted file mode 100755
index 27fdb8187..000000000
--- a/rescue/tree/etc/rc.sysinit
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-
-action() { echo $1; shift; $*; }
-
-export PATH=/bin:/sbin:/usr/bin:/usr/sbin
-
-echo -e "\t\t\tWelcome to \\033[1;36mMandrake\\033[0;39m Linux"
-
-action "Mounting proc filesystem" mount -n -t proc /proc /proc
-action "Remounting root filesystem in read-write mode" mount -n -o remount,rw /
-
->/etc/mtab
-mount -f /
-mount -f /proc
-
-# Set the hostname.
-action "Setting hostname rescue" hostname rescue
-echo rescue > /etc/HOSTNAME
-
-# Loads common modules ( no kerneld :( )
-echo "Loading additional modules..."
-load() { modprobe $* 2>/dev/null; }
-load ide-mod
-load ide-probe
-load ide-disk
-load ide-cd
-load floppy
-load af_packet
-load isofs
-load vfat
-load ext3
-load reiserfs
-load xfs
-load jfs
-load loop
-load sd_mod
-load sr_mod
-
-grep -q oem /proc/cmdline && exec /etc/oem-all -f
-
-/sbin/ifconfig lo 127.0.0.1 netmask 255.0.0.0
-/sbin/route add 127.0.0.1 lo
-
-grep -q noauto /proc/cmdline || drvinst SERIAL_USB
-
-if ! grep -q expert /proc/cmdline; then
- rescue-gui
-fi