d61c8d73d4
Don't try to start logging from /etc/inittab because busybox installs a S01logging script that handles that and can lead to duplicate logging processes. Let's handle the logging in each package that provides it since we can get multiple variants in the future like syslog-ng that have different initialization routines. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
727 B
Plaintext
26 lines
727 B
Plaintext
# /etc/inittab
|
|
#
|
|
# This inittab is a basic inittab sample for sysvinit, which mimics
|
|
# Buildroot's default inittab for BusyBox.
|
|
id:1:initdefault:
|
|
|
|
proc::sysinit:/bin/mount -t proc proc /proc
|
|
rwmo::sysinit:/bin/mount -o remount,rw / # REMOUNT_ROOTFS_RW
|
|
dpts::sysinit:/bin/mkdir -p /dev/pts
|
|
dshm::sysinit:/bin/mkdir -p /dev/shm
|
|
moun::sysinit:/bin/mount -a
|
|
host::sysinit:/bin/hostname -F /etc/hostname
|
|
init::sysinit:/etc/init.d/rcS
|
|
|
|
1:1:respawn:/sbin/getty 38400 tty1
|
|
2:1:respawn:/sbin/getty 38400 tty2
|
|
|
|
# S0:1:respawn:/sbin/getty -L ttyS0 115200 vt100 # GENERIC_SERIAL
|
|
|
|
# Stuff to do for the 3-finger salute
|
|
rebo::ctrlaltdel:/sbin/reboot
|
|
|
|
# Stuff to do before rebooting
|
|
umou:6:wait:/bin/umount -a -r
|
|
swap:6:wait:/sbin/swapoff -a
|