aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/serial
Commit message (Collapse)AuthorAgeFilesLines
* Move rc startup scripts from etc/ to sbin/init/Brad Davis2018-07-281-168/+0
| | | | | | | | | | | This keeps most startup scripts as CONFS per discussion on src-committers from back during BSDCan. Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16466 Notes: svn path=/head/; revision=336845
* With uart(4) default, change /dev/cuad# to /dev/cuau# andMarcel Moolenaar2008-07-191-6/+6
| | | | | | | sio# to uart# so that out-of-the-box FreeBSD is consistent. Notes: svn path=/head/; revision=180619
* As previously discussed, add the svn:executable property to all scriptsDoug Barton2008-07-161-0/+0
| | | | Notes: svn path=/head/; revision=180563
* Add an example of how to set up a 3-wire serial terminal.Ruslan Ermilov2006-03-231-2/+17
| | | | | | | | Usually, getty(8) does the trick, but if you just need a serial console without getty(8), here's how. Notes: svn path=/head/; revision=157040
* Unify the ci/co variables now that the the tty drivers now use the sameDavid E. O'Brien2004-11-141-40/+35
| | | | | | | character for both. Notes: svn path=/head/; revision=137698
* Catch up with PHK's sio(4) rework [sys/dev/sio/sio.c rev. 1.456].David E. O'Brien2004-11-141-23/+23
| | | | Notes: svn path=/head/; revision=137697
* Remove the requirement for the FreeBSD keyword as it no longerMike Makonnen2004-10-071-1/+1
| | | | | | | | | | makes any sense. Discussed with: dougb, brooks MFC after: 3 days Notes: svn path=/head/; revision=136224
* Mark scripts as not usable inside a jail by adding keyword 'nojail'.Pawel Jakub Dawidek2004-03-081-1/+1
| | | | | | | Some suggestions from: rwatson, Ruben de Groot <mail25@bzerk.org> Notes: svn path=/head/; revision=126744
* Catch up with 1995(?) for modem speeds (use 57600 instead of 115200 forBruce Evans2003-05-051-2/+2
| | | | | | | the example host to modem speed). Notes: svn path=/head/; revision=114685
* When resetting to defaults, reset drainwait to the current default pfBruce Evans2003-05-041-2/+3
| | | | | | | `sysctl -n kern.drainwait` instead of to the boot-time default of 300. Notes: svn path=/head/; revision=114682
* Fix style bugs:Jens Schweikhardt2002-10-121-1/+1
| | | | | | | | | | | | | * Space -> tabs conversion. * Removed blanks before semicolon in "if ... ; then". * Proper indentation of misindented lines. * Put a full stop after some comments. * Removed whitespace at end of line. Approved by: silence from gordon Notes: svn path=/head/; revision=104980
* Merge in all the changes that Mike Makonnen has been maintaining for aGordon Tetlow2002-07-181-0/+4
| | | | | | | | | | | while. This is only the script pieces, the glue for the build comes next. Submitted by: Mike Makonnen <makonnen@pacbell.net> Reviewed by: silence on -current and -hackers Prodded by: rwatson Notes: svn path=/head/; revision=100280
* Correct default value of drainwait: it should be 300 seconds, not forever.Maxim Sobolev2002-04-231-1/+1
| | | | | | | | | PR: 37370 Submitted by: Daniel O'Connor <doconnor@gsoft.com.au> MFC after: 2 weeks Notes: svn path=/head/; revision=95305
* Add copyright notices. Other systems have been barrowing our /etc filesDavid E. O'Brien2000-10-081-0/+26
| | | | | | | w/o giving any credit. Notes: svn path=/head/; revision=66830
* $Id$ -> $FreeBSD$Peter Wemm1999-08-271-1/+1
| | | | Notes: svn path=/head/; revision=50472
* Small whitespace change to fix run-over lines introduced in the previousSheldon Hearn1999-08-271-3/+3
| | | | | | | | | commit. Reported by: bde Notes: svn path=/head/; revision=50454
* Style clean-up:Sheldon Hearn1999-08-251-24/+24
| | | | | | | | | | | | | | | | | | | * All variables are now embraced: ${foo} * All comparisons against some value now take the form: [ "${foo}" ? "value" ] where ? is a comparison operator * All empty string tests now take the form: [ -z "${foo}" ] * All non-empty string tests now take the form: [ -n "${foo}" ] Submitted by: jkh Notes: svn path=/head/; revision=50357
* Submitted by: bdeDaniel O'Callaghan1998-03-131-3/+3
| | | | | | | Back out last brain blip. Notes: svn path=/head/; revision=34561
* Change examples for Cyclades cards (c -> c0) to fit with reality.Daniel O'Callaghan1998-03-131-3/+3
| | | | Notes: svn path=/head/; revision=34550
* Fixed the Cyclades and Digiboard port numbers.Bruce Evans1997-03-101-4/+4
| | | | Notes: svn path=/head/; revision=23607
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-231-1/+1
| | | | Notes: svn path=/head/; revision=23037
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Added support for Cyclades and Digiboard devices.Bruce Evans1996-02-241-29/+64
| | | | | | | | Submitted by: Daniel O'Callaghan <danny@lynx.its.unimelb.edu.au> + mods by bde Notes: svn path=/head/; revision=14239
* Another round of spelling fixes.Mike Pritchard1996-01-311-1/+1
| | | | Notes: svn path=/head/; revision=13798
* This is a purely cosmetic clean up. Fix many cut and paste problems thatRodney W. Grimes1995-04-091-2/+3
| | | | | | | had turned tabs into spaces. Notes: svn path=/head/; revision=7708
* Add drainwait option examplesAndrey A. Chernov1995-01-051-3/+3
| | | | Notes: svn path=/head/; revision=5398
* cua*0? --> cua*a?Andrey A. Chernov1994-12-041-9/+9
| | | | Notes: svn path=/head/; revision=4982
* Now rc.serial used for initial setup of serial linesAndrey A. Chernov1994-06-041-0/+91
Notes: svn path=/head/; revision=1675