2001-12-22 02:17:09 +01:00
|
|
|
# /etc/inittab
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001 Erik Andersen <andersen@codepoet.org>
|
|
|
|
#
|
|
|
|
# Note: BusyBox init doesn't support runlevels. The runlevels field is
|
|
|
|
# completely ignored by BusyBox init. If you want runlevels, use
|
|
|
|
# sysvinit.
|
|
|
|
#
|
|
|
|
# Format for each entry: <id>:<runlevels>:<action>:<process>
|
|
|
|
#
|
|
|
|
# id == tty to run on, or empty for /dev/console
|
|
|
|
# runlevels == ignored
|
|
|
|
# action == one of sysinit, respawn, askfirst, wait, and once
|
|
|
|
# process == program to run
|
|
|
|
|
2002-12-06 05:30:19 +01:00
|
|
|
# Startup the system
|
2007-01-14 01:56:52 +01:00
|
|
|
null::sysinit:/bin/mount -t proc proc /proc
|
2011-01-27 19:10:46 +01:00
|
|
|
null::sysinit:/bin/mount -o remount,rw /
|
2010-05-03 12:01:19 +02:00
|
|
|
null::sysinit:/bin/mkdir -p /dev/pts
|
2011-06-29 15:46:16 +02:00
|
|
|
null::sysinit:/bin/mkdir -p /dev/shm
|
2002-12-06 05:30:19 +01:00
|
|
|
null::sysinit:/bin/mount -a
|
|
|
|
null::sysinit:/bin/hostname -F /etc/hostname
|
|
|
|
# now run any rc scripts
|
2001-12-22 02:17:09 +01:00
|
|
|
::sysinit:/etc/init.d/rcS
|
|
|
|
|
2002-04-26 13:45:55 +02:00
|
|
|
# Put a getty on the serial port
|
2009-03-20 22:59:43 +01:00
|
|
|
#ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100 # GENERIC_SERIAL
|
2001-12-22 02:17:09 +01:00
|
|
|
|
|
|
|
# Stuff to do for the 3-finger salute
|
|
|
|
::ctrlaltdel:/sbin/reboot
|
|
|
|
|
|
|
|
# Stuff to do before rebooting
|
2002-11-15 03:55:17 +01:00
|
|
|
null::shutdown:/usr/bin/killall klogd
|
|
|
|
null::shutdown:/usr/bin/killall syslogd
|
2001-12-22 02:17:09 +01:00
|
|
|
null::shutdown:/bin/umount -a -r
|
|
|
|
null::shutdown:/sbin/swapoff -a
|
2002-11-15 03:55:17 +01:00
|
|
|
|