serial.opts 570 B

1234567891011121314151617181920212223
  1. # Serial device configuration
  2. #
  3. # The address format is "scheme,socket,instance".
  4. #
  5. case "$ADDRESS" in
  6. *,*,*)
  7. INFO="Default modem setup"
  8. # Symbolic link to dialout device
  9. LINK="/dev/modem"
  10. # Options for 'setserial'
  11. SERIAL_OPTS=""
  12. # Should we create an inittab entry for this port?
  13. #INITTAB="/sbin/mgetty"
  14. # Extra stuff to do after setting up the device
  15. start_fn () { return; }
  16. # Extra stuff to do before shutting down the device
  17. stop_fn () { return; }
  18. # Card eject policy options
  19. NO_CHECK=n
  20. NO_FUSER=n
  21. ;;
  22. esac