Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

383 Commits   1 Branch   1 Tag
Index: inittab.in
===================================================================
--- inittab.in	(nonexistent)
+++ inittab.in	(revision 5)
@@ -0,0 +1,71 @@
+#
+# inittab       This file describes how the INIT process should set up
+#               the system in a certain run-level.
+#
+#
+# Author:       Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
+# Modified by:  Patrick J. Volkerding,  <volkerdi@slackware.com>
+#               Andrey V. Kosteltsev,   <kx@radix.pro>
+#
+
+#
+# These are the default runlevels:
+# -------------------------------
+#   0: halt
+#   1: single user mode
+#   2: unused (but configured the same as runlevel 3)
+#   3: multiuser mode (default runlevel)
+#   4: X11 with KDM/GDM/XDM (session managers)
+#   5: unused (but configured the same as runlevel 3)
+#   6: reboot
+#
+# id:runlevels:action:process
+#
+
+# Default runlevel:
+id:3:initdefault:
+
+# System initialization:
+si:S:sysinit:/etc/rc.d/rc.S
+
+# Script to run when going single user:
+su:1S:wait:/etc/rc.d/rc.K
+
+# Script to run when going multi user:
+rc:2345:wait:/etc/rc.d/rc.M
+
+# What to do at the "Three Finger Salute":
+ca::ctrlaltdel:/sbin/shutdown -t5 -r now
+
+# Runlevel 0 halts the system:
+l0:0:wait:/etc/rc.d/rc.0
+
+# Runlevel 6 reboots the system:
+l6:6:wait:/etc/rc.d/rc.6
+
+# Runlevel 4 also starts /etc/rc.d/rc.4 to run a display manager for X.
+# Display managers are preferred in this order:  gdm, kdm, xdm
+x1:4:respawn:/etc/rc.d/rc.4
+
+# What to do when power fails:
+pf::powerfail:/sbin/genpowerfail start
+
+# If power is back, cancel the running shutdown:
+pg::powerokwait:/sbin/genpowerfail stop
+
+# These are the standard console login getties in multiuser mode:
+c1:12345:respawn:/sbin/agetty @NOCLEAR@ 38400 tty1 linux
+c2:12345:respawn:/sbin/agetty 38400 tty2 linux
+c3:12345:respawn:/sbin/agetty 38400 tty3 linux
+c4:12345:respawn:/sbin/agetty 38400 tty4 linux
+c5:12345:respawn:/sbin/agetty 38400 tty5 linux
+c6:12345:respawn:/sbin/agetty 38400 tty6 linux
+
+# Dialup lines:
+#d1:12345:respawn:/sbin/agetty -mt60 38400,19200,9600,2400,1200 ttyS0 vt100
+#d2:12345:respawn:/sbin/agetty -mt60 38400,19200,9600,2400,1200 ttyS1 vt100
+
+# Local serial lines:
+#s1:12345:respawn:/sbin/agetty -L ttyS0 9600 vt100
+#s2:12345:respawn:/sbin/agetty -L ttyS1 9600 vt100
+