|
Revision 1, 0.7 KB
(checked in by root, 6 years ago)
|
|
First post
|
| Line | |
|---|
| 1 | # inittab, the main control. |
|---|
| 2 | |
|---|
| 3 | # $Id: inittab.soekris,v 1.1.1.1 2004/08/31 13:33:28 thomasez Exp $ |
|---|
| 4 | |
|---|
| 5 | # |
|---|
| 6 | # Note: BusyBox init doesn't support runlevels. The runlevels field is |
|---|
| 7 | # completely ignored by BusyBox init. If you want runlevels, use |
|---|
| 8 | # sysvinit. |
|---|
| 9 | # |
|---|
| 10 | # Format for each entry: <id>:<runlevels>:<action>:<process> |
|---|
| 11 | # |
|---|
| 12 | # id == tty to run on, or empty for /dev/console |
|---|
| 13 | # runlevels == ignored |
|---|
| 14 | # action == one of sysinit, respawn, askfirst, wait, and once |
|---|
| 15 | # process == program to run |
|---|
| 16 | |
|---|
| 17 | # Startup the system |
|---|
| 18 | ::sysinit:/etc/rc.initrd |
|---|
| 19 | console::respawn:/bin/login |
|---|
| 20 | |
|---|
| 21 | # tts/0::respawn:/sbin/getty -L tts/0 115200 vt100 |
|---|
| 22 | |
|---|
| 23 | # Threefingers; |
|---|
| 24 | ::ctrlaltdel:/sbin/reboot |
|---|
| 25 | |
|---|
| 26 | ::restart:/sbin/init |
|---|
| 27 | |
|---|
| 28 | # For a serial: |
|---|
| 29 | |
|---|