Advertisement
Guest User

Untitled

a guest
Aug 31st, 2011
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. # Boot-time system configuration/initialization script.
  2. # This is run first except when booting in single-user mode.
  3. #
  4. ::sysinit:/etc/init.d/rcS
  5.  
  6. # /bin/sh invocations on selected ttys
  7. #
  8. # Note below that we prefix the shell commands with a "-" to indicate to the
  9. # shell that it is supposed to be a login shell. Normally this is handled by
  10. # login, but since we are bypassing login in this case, BusyBox lets you do
  11. # this yourself...
  12. #
  13. ttyS0::respawn:-/bin/sh
  14.  
  15. # Stuff to do when restarting the init process
  16. ::restart:/sbin/init
  17.  
  18. # Stuff to do before rebooting
  19. ::ctrlaltdel:/sbin/reboot
  20. ::shutdown:/etc/init.d/shutdown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement