|
Revision 1, 0.8 KB
(checked in by root, 6 years ago)
|
|
First post
|
| Line | |
|---|
| 1 | # inittab, the main control. |
|---|
| 2 | |
|---|
| 3 | # $Id: inittab,v 1.2 2004/09/14 15:10:07 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 | |
|---|
| 20 | ::respawn:/sbin/getty 38400 /dev/vc/1 |
|---|
| 21 | #vc/1::respawn:/sbin/getty 38400 /dev/vc/1 |
|---|
| 22 | vc/2::respawn:/sbin/getty 38400 /dev/vc/2 |
|---|
| 23 | vc/4::respawn:/sbin/getty 38400 /dev/vc/4 |
|---|
| 24 | vc/5::respawn:/sbin/getty 38400 /dev/vc/5 |
|---|
| 25 | |
|---|
| 26 | # Threefingers; |
|---|
| 27 | ::ctrlaltdel:/sbin/reboot |
|---|
| 28 | |
|---|
| 29 | ::restart:/sbin/init |
|---|
| 30 | |
|---|
| 31 | # For a serial: |
|---|