summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Bye bye xntpd, enter ntp.roberto1999-12-161-3/+3
| | | | The variable names haven't changed for compapatibility reasons.
* Add DOCSUPFILE, like PORTSSUPFILE. (ie 'make update' in /usr/doc)billf1999-12-161-0/+1
| | | | | | PR: docs/15439 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de> Obtained from: ports/Makefile
* This was a mixed bag of spaces and ^I's.obrien1999-12-151-5/+5
|
* Add an enable_osf1 knob to the alpha startup codegallatin1999-12-152-0/+10
|
* Add missing trailing slash to URL.sheldonh1999-12-151-1/+1
|
* The target `all' evoluted into a kitchen-sink these days... It's nojoerg1999-12-141-22/+35
| | | | | | | | | | | | | | | | | | | | longer really suitable as a default to create the various /dev nodes to be contained on the fixit floppy, since all our proud new devide nodes finally made the fixit floppy run over... So instead create a new target titled `fixit' which creates just the dev nodes for a single unit per each default driver; whoever needs more of them is free to create whatever he needs, perhaps after killing unused nodes before. There were more than 700 /dev nodes on the floppy before that action, and it's still around 350 now. I doubt all the various /dev/ugen* entries are really useful on such a tool, so people, please check, and if you feel like more could be eliminated from that floppy, kill'em. While i was at it, removed traces of ft(8) that still survived even though the driver has long since been dead. That's step #1. #2 will follow...
* update to isdn4bsd beta release 0.90hm1999-12-143-0/+143
|
* Exercise sufficient editorial license and further shorten motd.dcs1999-12-131-17/+16
| | | | Stolen from: jkh
* Suport multiple ``ifconfig_*?="DHCP"'' configurations.obrien1999-12-127-77/+133
| | | | | | | | | Currently we have a problem in that `dhclient' bails when configuring the second interface as port 68 is already in use (by the `dhclient' started for the first interface). PR: 14810 Submitted by: n_hibma
* Trim to 24 lines. Yeah, I know, looks ugly.dcs1999-12-111-4/+3
|
* Add reference to hier(7). This gets motd just over 25 lines. I'mdcs1999-12-111-1/+5
| | | | | | | don't like it, but I think this can greatly ease the learning curve of Linux-immigrants. Approved by: jkh
* Minor whitespace fix.obrien1999-12-041-2/+1
|
* Added ntfs subdir to allow mountd.c include <ntfs/ntfsmount.h>semenu1999-12-031-0/+2
| | | | and others.
* Now that pccardc beep actually works, add knob for it in rc.conf/rc.pccardimp1999-12-023-0/+9
| | | | Submitted by: sanpei@sanpei.org (MIHIRA-san Yoshiro)
* Call rpc.umntall only if nfs_client_enable, hang occurse otherwiseache1999-11-301-3/+7
|
* Add the ability to match on device names attached to.n_hibma1999-11-281-6/+5
| | | | | If a device is attached to ums4, you can reference this devname in the configuration file as ${DEVNAME} (a shell variable, yes).
* As promised long ago, remove the last evidence of the 'sd' driver.msmith1999-11-271-5/+2
| | | | SCSI disks are only known as 'da' now.
* Do not create bdev nodes anymore. Instead create cdev nodes with thephk1999-11-261-58/+57
| | | | | | | | | | | | | | | | | | | same names: rover# ls -l /dev/*wd0a crw-r----- 1 root operator 3, 0 Nov 26 20:20 /dev/rwd0a crw-r----- 1 root operator 3, 0 Nov 26 20:20 /dev/wd0a Notice: Over time, no earlier than FreeBSD 5.0, the "r*" names may be discontinued. A fair number of programs and scripts need to (un)learn some tricks before then. This will take no effect until you either run MAKEDEV by hand or reinstall your system. WARNING: Kernels older than approx November 22 will not be happy about a /dev created with MAKEDEV after this commit. Please update your /kernel.good etc.
* MFS: note that only IP addresses work when wrapping the portmapper.obrien1999-11-251-2/+10
| | | | | Make clearer we consider this only an example, and admins should really write this file for their needs.
* Make the devices for the endpoints 0-15, not only for 0. This createsn_hibma1999-11-241-3/+5
| | | | ugen0 and ugen0.1 - ugen0.15, not only ugen0 (control endpoint).
* Remove /dev/drumphk1999-11-241-3/+1
|
* Remove leftover reference to the "od" devices.phk1999-11-241-2/+1
|
* we all like to 'Use' ppp, but this should be 'User'alfred1999-11-241-1/+1
| | | | Pointed out by: dcs
* Remove man_locales - goes to manpath.configache1999-11-231-1/+0
|
* Use manpath -L for man localesache1999-11-232-16/+4
|
* Oops, typobrian1999-11-237-7/+7
|
* Add pppoed startup optionsbrian1999-11-238-0/+74
|
* Flip the sequence of vendor, product around, to make it consistentn_hibma1999-11-221-3/+3
| | | | | with the rest of the world. This avoids confusion when talking about VID.PID.RID vs. PID.VID.RID. The former is the sequence normally used.
* Finish up umntall support. init now passed an argument to thedillon1999-11-222-3/+33
| | | | | | | | | rundown script 'reboot' or 'single'. ISO support (which never worked) has been removed from mount_nfs. mount_nfs and umount now use mounttab, which allows umntall to work properly. The rc scripts now call umntall as appropriate. Submitted by: Martin Blapp <mb@imp.ch>
* Add the usbd.conf to the distribution target.n_hibma1999-11-221-1/+1
|
* Add event queue handling. It triggers activities on events read fromn_hibma1999-11-211-0/+35
| | | | | | | | | | | | | | | | | | | /dev/usb. The actions are specified in the file /etc/usbd.conf. usbd.c: - Add event queue (/dev/usb) handling. - Add comments - Clean up code some more usbd.8: - Update manpage for the new command line flags - Remove a duplicate FreeBSD tag from it). usbd.conf, usbd.conf.5, Makefile: - Add the usbd.conf configuration file and the man page for it. NOTE: MAKEDEV already creates the /dev/usb device tree node, no change needed there anymore.
* Fix the entry for the NetGear FA410TX, which appears to have been committedmsmith1999-11-212-6/+6
| | | | | untested (invalid syntax, and config index 0x1 does not appear to exist in the card as it currently ships).
* Add share/examples/netgraph.roberto1999-11-191-0/+2
| | | | Forgotten by: our friends at Whistle.
* Use a common MAKEDEV between the Alpha and i386 - the only differencespeter1999-11-183-2845/+1
| | | | | of significance were due to the Alpha version going stale. We use common device numbering for devices. Hopefully, this file's days are numbered.
* Add the entry for usb (as opposed to usb<number>). It's minor is equivalentn_hibma1999-11-173-3/+15
| | | | to usb255 and will be used for the event queue of the usb daemon.
* Add network pass4 - after all local (/usr/local/etc/rc.d f.e.)ache1999-11-178-70/+116
| | | | | | daemons started. Move log_in_vain option there. It is needed to avoid lot of connections to port 80 logged on production WWW server prior Apache started from /usr/local/etc/rc.d
* Add Nokia Cellular Data Card DTP2 and DTP-2 ver IIroger1999-11-162-0/+32
|
* Add single_mountd_enable hook to run mountd but not NFS serverache1999-11-148-0/+120
| | | | Needed for machine with CFS but without real NFS
* cleanup the IDE cases a bit, add the ad driver to the all: target.sos1999-11-092-8/+20
|
* Add missing netinet6.jlemon1999-11-051-0/+2
| | | | Detected by: make world
* Entry for Network Everywhere Ethernet 10BaseT PC Card.obrien1999-11-052-0/+18
| | | | Submitted by: alfred
* Add entry for BayNetworks NETGEAR FA410TXC Fast Ethernet. Poster had thisobrien1999-11-052-2/+18
| | | | | | in PAO format, so there might be a buglet in my conversion. Submitted by: Robert Withrow <bwithrow@nortelnetworks.com>
* Add network entry for Xircom Realport (Ethernet + modem).obrien1999-11-052-0/+16
| | | | Submitted by: Nick Slager <nicks@albury.net.au>
* Pass IP fragments with non-zero offset. The semantics of matchingru1999-11-041-0/+6
| | | | | | IP fragments has been changed in src/sys/netinet/ip_fw.c,v 1.78. Reminded by: "Ronald F. Guilmette" <rfg@monkeys.com>
* "make install" did not install 150.clean-hoststat.ghelmer1999-11-041-0/+1
| | | | PR: bin/12497
* Add share/examples/nwclient directory.bp1999-11-031-0/+2
|
* Document the ch* devices.nik1999-11-012-0/+2
| | | | | PR: docs/14401 Submitted by: Crist J. Clark <cjc@cc942873-a.ewndsr1.nj.home.com>
* Fix a rather amusing bug.phk1999-10-301-2/+2
| | | | | | | | | | | Try this: setenv LANG ASCII cal 1999 :-) PR: 12116 Submitted by: Anton Berezin tobez@plab.ku.dk Reviewed by: phk
* Fix ownership of /dev/fd/*. We still had a bin:bin hangover from pre-3.0.obrien1999-10-303-3/+3
| | | | Noticed by: bde
* Actually install the rc.sysctl file (the one that reads /etc/sysctl.conf)peter1999-10-291-1/+2
|
OpenPOWER on IntegriCloud