diff options
author | Mystery Man <unknown@mandriva.org> | 2002-09-12 16:27:50 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2002-09-12 16:27:50 +0000 |
commit | 72c601a253551747621693a5896df095e6a344aa (patch) | |
tree | 01d9e6856eede4757785f0daff4df9923d0ff97e /rescue/tree/etc/rc.sysinit | |
parent | 4c32fa0682b1703defb3b1e1a19643a263f2848e (diff) | |
download | drakx-1_1_9_46mdk.tar drakx-1_1_9_46mdk.tar.gz drakx-1_1_9_46mdk.tar.bz2 drakx-1_1_9_46mdk.tar.xz drakx-1_1_9_46mdk.zip |
This commit was manufactured by cvs2svn to create tag 'V1_1_9_46mdk'.V1_1_9_46mdk
Diffstat (limited to 'rescue/tree/etc/rc.sysinit')
-rwxr-xr-x | rescue/tree/etc/rc.sysinit | 48 |
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 e32a23b3e..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 -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 |