#!/bin/bash # # # rc.single This file is executed by init when it goes into runlevel # 1, which is the administrative state. It kills all # deamons and then puts the system into single user mode. # Note that the file systems are kept mounted. # # Author: Miquel van Smoorenburg, # Modified for RHS Linux by Damien Neil # # Set the path. PATH=/sbin:/bin:/usr/sbin:/usr/bin TEXTDOMAIN=initscripts . /etc/rc.d/init.d/functions if [ "$1" != "start" ] ; then exit 0 fi rm -f /var/lock/subsys/* # this looks nices [ -x /usr/bin/clear ] && /usr/bin/clear # make sure modprobe is working if [ -f /proc/sys/kernel/modprobe ]; then sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1 fi # If they want to run something in single user mode, might as well run it... for i in /etc/rc1.d/S[0-9][0-9]*; do # Check if the script is there. [ ! -f $i ] && continue # Don't run [KS]??foo.{rpmsave,rpmorig} scripts [ "${i%.rpmsave}" != "${i}" ] && continue [ "${i%.rpmorig}" != "${i}" ] && continue [ "${i%.rpmnew}" != "${i}" ] && continue [ "$i" = "/etc/rc1.d/S00single" ] && continue $i start done # Now go to the single user level. echo $"Telling INIT to go to single user mode." exec init -t1 S n value='distro/mdv2009.0'>distro/mdv2009.0 Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/insmod.h
blob: d91f239cfb6b74b181d99cd001358dc0ddbb085c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Guillaume Cottenceau (gc@mandrakesoft.com)
 *
 * Copyright 2000 MandrakeSoft
 *
 * This software may be freely redistributed under the terms of the GNU
 * public license.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#ifndef _INSMOD_INTERFACE_H_
#define _INSMOD_INTERFACE_H_

int insmod_call(char * full_filename, char * params);

#endif