3 # Copyright (C) 2001 Erik Andersen <andersen@codepoet.org>
5 # Note: BusyBox init doesn't support runlevels. The runlevels field is
6 # completely ignored by BusyBox init. If you want runlevels, use
9 # Format for each entry: <id>:<runlevels>:<action>:<process>
11 # id == tty to run on, or empty for /dev/console
12 # runlevels == ignored
13 # action == one of sysinit, respawn, askfirst, wait, and once
14 # process == program to run
17 null::sysinit:/bin/mount -t proc proc /proc
18 null::sysinit:/bin/mount -o remount,rw /
19 null::sysinit:/bin/mkdir -p /dev/pts
20 null::sysinit:/bin/mkdir -p /dev/shm
21 null::sysinit:/bin/mount -a
22 null::sysinit:/bin/hostname -F /etc/hostname
23 # now run any rc scripts
24 ::sysinit:/etc/init.d/rcS
26 # /sbin/getty invocation for tty0
27 tty0::respawn:/sbin/getty 115200 tty0
29 # Put a getty on the serial port
30 console::respawn:/sbin/getty -L console 0 vt100
32 # Stuff to do for the 3-finger salute
33 ::ctrlaltdel:/sbin/reboot
35 # Stuff to do before rebooting
36 ::shutdown:/etc/init.d/rcK
37 ::shutdown:/sbin/swapoff -a
38 ::shutdown:/bin/umount -a -r