aboutsummaryrefslogtreecommitdiff
path: root/etc/etc.i386
Commit message (Collapse)AuthorAgeFilesLines
* Move etc/ttys to sbin/init/.Brad Davis2018-09-041-49/+0
| | | | | | | | | | And simplify this a little by flattening the directory structure. Approved by: re (gjb), will (mentor) Differential Revision: https://reviews.freebsd.org/D16955 Notes: svn path=/head/; revision=338454
* For video consoles, only launch a getty if the device exists.Warner Losh2018-05-091-8/+8
| | | | | | | Differential Revision: https://reviews.freebsd.org/D15169 Notes: svn path=/head/; revision=333436
* Enable all callin ttys if the tty is an available console.Glen Barber2015-10-201-3/+3
| | | | | | | | | Discussed on: -arch@ (no objections) MFC after: 1 week Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=289634
* Convert the potential console port over to using 3wire, for i386/amd64.Peter Grehan2014-06-171-1/+1
| | | | | | | | | | (This change was already in place for other arches via r262957) Reviewed by: nwhitehorn MFC after: 1 week Notes: svn path=/head/; revision=267591
* Enable a login console on ttyu0 by default if it is a serial console. ThisNathan Whitehorn2014-05-301-1/+1
| | | | | | | | | | | | | | prevents surprising effects post-installation on serial-only x86 systems (e.g. bhyve) where the kernel messages will appear, rc scripts will run, and then there will be no login prompt and you will be locked out of the system. Thanks to Devin Teske and Peter Grehan for ideas and testing. With this patch, it may also be possible to unify all or most of the machine-specific ttys files. Notes: svn path=/head/; revision=266895
* Remove the reference to pseudo-terminals from the description.Ed Schouten2011-03-301-3/+2
| | | | | | | | Pseudo-terminals are no longer listed in this file, since the utmpx implementation doesn't depend on ttyslot(). Notes: svn path=/head/; revision=220154
* Remove pseudo-terminals from ttys(5).Ed Schouten2010-01-271-257/+0
| | | | | | | | | | | | | | | When we had utmp(5), we had to list all the psuedo-terminals in ttys(5) to make ttyslot(3) function properly. Now that pututxline(3) deals with slot allocation internally (not based on TTY names), we don't need to list all the TTYs on the system in ttys(5) to make user accounting work properly. This patch removes all the entries from the /etc/ttys files, but also the pts(4) entries that were appended implicitly, which was added in r154838. Notes: svn path=/head/; revision=203068
* Convert syscons on i386 to TERM=xterm.Ed Schouten2009-11-131-9/+9
| | | | | | | | TEKEN_XTERM is now gone. Because we always use xterm mode now, we only need a TEKEN_CONS25 switch to go back to cons25. Notes: svn path=/head/; revision=199250
* Remove the note about using vt220, which makes no sense at all.Ed Schouten2009-06-141-3/+1
| | | | | | | | | vt220 will not work better. Even though it probably will remove warnings about unknown terminal types, a cons25 emulator is not compatible with vt220 at all. Notes: svn path=/head/; revision=194218
* Remove pts(4) entries from /etc/ttys.Ed Schouten2009-02-121-512/+0
| | | | | | | | | | | | | | | | | | Even though I increased the amount of pts(4) entries in /etc/ttys some time ago, I didn't realize back then those entries shouldn't have been there in the first place. I just looked at the getttyent() source code and it turns out when you call setttyent(), it walks through /dev/pts and looks for the device with the highest number. After you receive EOF's from getttyent(), it makes up entries for pts(4) devices. This means that adding entries for pts(4) is somewhat harmful, because if you now traverse the list, you get redundant entries, so just remove them. Notes: svn path=/head/; revision=188535
* Restore 256 pty(4) entries.Ed Schouten2008-08-241-0/+256
| | | | | | | | | | | | | | | As discussed with Robert Watson on the src-committers list, it is safer to keep at least some pty(4) entries in /etc/ttys, for applications that roll their own PTY allocation routine and only search for BSD-style PTY's. This means we've now just toggled the amount of entries for pts(4) and pty(4). Requested by: rwatson Notes: svn path=/head/; revision=182104
* Remove old BSD-style entries from /etc/ttys and increase pts(4) to 512.Ed Schouten2008-08-231-512/+256
| | | | | | | | | | | | Because we now use pts(4)-style PTY's exclusively, there is no use for these entries in /etc/ttys. Right now the pts(4) entries only go from 0 to 255. Because we're going to touch these files anyway, increase the number to 511. Discussed with: philip (ex-mentor) Notes: svn path=/head/; revision=182058
* Make uart(4) the default serial port driver on i386 and amd64.Ed Schouten2008-07-131-4/+4
| | | | | | | | | | | | | | The uart(4) driver has the advantage of supporting a wider variety of hardware on a greater amount of platforms. This driver has already been the standard on platforms such as ia64, powerpc and sparc64. I've decided not to change anything on pc98. I'd rather let people from the pc98 team look at this. Approved by: philip (mentor), marcel Notes: svn path=/head/; revision=180487
* Bump up the number of ttys supported by pty(4) to 512 by making use ofJohn Baldwin2007-11-191-0/+256
| | | | | | | | | | [pt]ty[lmnoLMNO][0-9a-v]. MFC after: 3 days Reviewed by: rwatson Notes: svn path=/head/; revision=173755
* Add ttys lines for pts/0-pts/255.Robert Watson2007-11-151-0/+256
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=173638
* Remove more vestiges of /usr/X11R6, but leave mtree for portmgr.Doug Barton2007-05-291-1/+1
| | | | Notes: svn path=/head/; revision=170088
* Add dumb console driver and related bits.Hidetoshi Shimokawa2003-10-241-0/+2
| | | | | | | | | | | dcons(4): very simple console and gdb port driver dcons_crom(4): FireWire attachment dconschat(8): User interface to dcons Tested with: i386, i386-PAE, and sparc64. Notes: svn path=/head/; revision=121468
* Per previous announcement, remove the old version of the rc system.Doug Barton2003-05-021-48/+0
| | | | | | | | | | | | | All functionality from the previous system has been preserved, and users should still customize their system boot with the familiar methods, rc.conf, rc.conf.local, rc.firewall, sysctl.conf, etc. Users who have customized versions of scripts that have been removed should take great care when upgrading, since the compatibility code that used those old scripts has also been removed. Notes: svn path=/head/; revision=114492
* xten isn't needed after tw is gone.Warner Losh2003-04-271-6/+0
| | | | | | | Approved by: re@ (scottl) Notes: svn path=/head/; revision=114115
* Make disktab(5) MI (repo-copied from etc.i386/disktab).Ruslan Ermilov2003-04-021-235/+0
| | | | Notes: svn path=/head/; revision=112984
* Mention that terminal type vt220 will work better if one needsGerald Pfeifer2002-04-171-2/+4
| | | | | | | | | | interoperability with other systems like Solaris or GNU/Linux. PR: 33810 Approved by: obrien Notes: svn path=/head/; revision=94929
* Add an entry for the Zip 250.Murray Stokely2001-08-311-0/+6
| | | | | | | | PR: i386/29639 Submitted by: David Yeske <dyeske@yahoo.com> Notes: svn path=/head/; revision=82703
* Move the syscons configuration to a machine independent rc.syscons. TheJohn Baldwin2001-01-091-151/+0
| | | | | | | | syscons sh code was identical on both platforms except for whitespace differences. Notes: svn path=/head/; revision=70856
* Don't announce that rc.${MACHINE_ARCH} is doing the syscons configurationJohn Baldwin2001-01-071-1/+1
| | | | | | | | | | | as the previous line already tells us we are in rc.${MACHINE_ARCH}. This also allows more syscons configuration messages during startup to fit on one line. Reviewed by: dougb Notes: svn path=/head/; revision=70737
* Apply a more consistent style to the echo statements in /etc/ scripts.Doug Barton2000-12-171-2/+2
| | | | | | | | | | | | | * Put quotes around each line * Single quotes for lines with no variable interpolation * Double quotes if there is * Capitalize each word that begins a line * Make echo -n 'Doing foo:' ... echo '.' more of a standard No functionality changes Notes: svn path=/head/; revision=70108
* Added "minimum3": spare room for multilingual installer and driver floppy.Tatsumi Hosokawa2000-10-261-0/+5
| | | | | | | The size is 3 x 1.44MB. Notes: svn path=/head/; revision=67631
* Fix bug in rev 1.54; the terminating `;;' for the ibcs2_enable=YESSheldon Hearn2000-08-181-0/+1
| | | | | | | case got lost. Notes: svn path=/head/; revision=64817
* Don't rely on a shell scripts to do the simple job of loadingSheldon Hearn2000-08-181-2/+11
| | | | | | | | | | | | | kernel modules for ibcs2_enable and svr4_enable. Don't rely on a shell script to do the neglibly less simple job of loading a kernel module and running one command for linux_enable. These shell scripts are going away. Notes: svn path=/head/; revision=64809
* Move the running of the Linux and SVR4 compat bits to the arch independentDavid E. O'Brien2000-08-151-16/+0
| | | | | | | | | location. Sponsored by: LinuxWorld frustration Notes: svn path=/head/; revision=64684
* Clean up all the old setup code for the old /dev/random. This will beMark Murray2000-06-251-14/+0
| | | | | | | revisited when the new /dev/random is done. Notes: svn path=/head/; revision=62075
* Revert to rev 1.6 until post 4.0-R. As probably 98% of i386 installsDavid E. O'Brien2000-01-291-1/+2
| | | | | | | | | happen with a keyboard and monitor the console change was not as needed in the i386 case as the Alpha case. IMO >50% of Alpha installs are using a serial console, the change matching rev 1.7 should not be backed out. Notes: svn path=/head/; revision=56805
* * Use `console' rather than `ttyv0' so there will always be a getty onDavid E. O'Brien2000-01-291-2/+1
| | | | | | | | the console reguardless of the type of console. * Make the Alpha version match the i386 version. Notes: svn path=/head/; revision=56776
* Bah! Give me the pointy hat. Never commit fixes when just awake.Jeroen Ruigrok van der Werven2000-01-241-1/+1
| | | | | | | | | anable -> enable Spotted by: Alexander Leidinger <Alexander@leidinger.net> Notes: svn path=/head/; revision=56534
* Fix my obmission of the keyword enable after apm -e.Jeroen Ruigrok van der Werven2000-01-241-2/+2
| | | | | | | Submitted by: Blaz Zupan <blaz@amis.net> Notes: svn path=/head/; revision=56519
* Use apm instead of apmconf.Jeroen Ruigrok van der Werven2000-01-231-4/+4
| | | | | | | | Necessary change to due removal of apmconf which got moved into apm by green. Notes: svn path=/head/; revision=56435
* Use more thorough redirection to make the impact of allscreens_flagsSheldon Hearn1999-12-211-1/+1
| | | | | | | | | | | | more comprehensive. Previously, at least colour changes were not applied to all virtual consoles. PR: 15066 Reported by: Andy Farkas <andyf@speednet.com.au> Submitted by: yokota Notes: svn path=/head/; revision=54950
* Use a common MAKEDEV between the Alpha and i386 - the only differencesPeter Wemm1999-11-181-1442/+0
| | | | | | | | of significance were due to the Alpha version going stale. We use common device numbering for devices. Hopefully, this file's days are numbered. Notes: svn path=/head/; revision=53327
* Add the entry for usb (as opposed to usb<number>). It's minor is equivalentNick Hibma1999-11-171-1/+5
| | | | | | | to usb255 and will be used for the event queue of the usb daemon. Notes: svn path=/head/; revision=53316
* cleanup the IDE cases a bit, add the ad driver to the all: target.Søren Schmidt1999-11-091-4/+10
| | | | Notes: svn path=/head/; revision=53058
* Document the ch* devices.Nik Clayton1999-11-011-0/+1
| | | | | | | | PR: docs/14401 Submitted by: Crist J. Clark <cjc@cc942873-a.ewndsr1.nj.home.com> Notes: svn path=/head/; revision=52767
* Fix ownership of /dev/fd/*. We still had a bin:bin hangover from pre-3.0.David E. O'Brien1999-10-301-1/+1
| | | | | | | Noticed by: bde Notes: svn path=/head/; revision=52645
* Fix ``MAKEDEV acd''Brian Somers1999-10-151-1/+1
| | | | | | | Spotted by: Mark Knight <mkn@FreeBSD.org.uk> Notes: svn path=/head/; revision=52259
* Remove references to the od driver. These devices are no attached byJustin T. Gibbs1999-10-121-4/+1
| | | | | | | | | | the da driver and using the same major/minor scheme with the old name only leads to confusion. PR: misc/14279 Notes: svn path=/head/; revision=52162
* remove ipl hooksPeter Wemm1999-10-101-9/+1
| | | | Notes: svn path=/head/; revision=52090
* Add entries for the 'amrd' and 'mlxd' disk nodes used by the AMI MegaRAIDMike Smith1999-10-071-2/+16
| | | | | | | and Myles drivers respectively. Notes: svn path=/head/; revision=51976
* Add support for md driver.Poul-Henning Kamp1999-09-211-12/+15
| | | | | | | sort some comments Notes: svn path=/head/; revision=51500
* Be slightly less verbose.David E. O'Brien1999-09-151-1/+1
| | | | Notes: svn path=/head/; revision=51308
* /Linux emulation/Linux mode binary compatibility/David E. O'Brien1999-09-151-1/+1
| | | | Notes: svn path=/head/; revision=51288
* Fixed some disordering (mainly of case lists for disks).Bruce Evans1999-09-131-16/+17
| | | | | | | Fixed bitrot in the `wcd*)' case. Notes: svn path=/head/; revision=51233
* Apply a consistent style to most of the etc scripts. Particularly, useSheldon Hearn1999-09-132-67/+155
| | | | | | | | | | | | case instead of test where appropriate, since case allows case is a sh builtin and (as a side-effect) allows case-insensitivity. Changes discussed on freebsd-hackers. Submitted by: Doug Barton <Doug@gorean.org> Notes: svn path=/head/; revision=51231