summaryrefslogtreecommitdiffstats
path: root/release/sysinstall
Commit message (Collapse)AuthorAgeFilesLines
* Really fix the auto keyword botch correctly by just letting itjkh1999-10-051-2/+2
| | | | | | do its job and not override it when set. Submitted by: Ruslan Ermilov <ru@FreeBSD.org>
* Use sigemptyset rather than sa_mask = 0.peter1999-09-302-2/+2
| | | | Submitted by: "John W. DeBoskey" <jwd@unx.sas.com>
* Sigh, too many late nights!jkh1999-09-301-1/+1
|
* Oh bollocks, I really screwed up the "auto" check here. Timejkh1999-09-271-1/+1
| | | | | | to crack the K&R; I must have forgotten the C language. :) Embarrassingly noticed by: Howard Gutch <logix@foobar.franken.de>
* Spruce up the ADMtek driver: conver to newbus, miibus and add supportwpaul1999-09-221-1/+1
| | | | | | | | | | | | | | | for the AN985 "Centaur" chip, which is apparently the next genetation of the "Comet." The AN985 is also a tulip clone and is similar to the AL981 except that it uses a 99C66 EEPROM and a serial MII interface (instead of direct access to the PHY registers). Also updated various documentation to mention the AN985 and created a loadable module. I don't think there are any cards that use this chip on the market yet: the datasheet I got from ADMtek has boxes with big X's in them where the diagrams should be, and the sample boards I got have chips without any artwork on them.
* Prepare for K5.markm1999-09-194-8/+8
|
* execute a strategic clear.jkh1999-09-191-1/+3
|
* Deal with new "auto" setting for network_interfaces.jkh1999-09-191-1/+1
|
* MF3: various small tweaks.jkh1999-09-171-1/+1
|
* If enlightenment is present, gnome-session starts it automagically.jkh1999-09-151-1/+1
|
* Foo. Maybe I should get Peter to hook ispell up in commit_prep.pl.obrien1999-09-141-1/+1
|
* Add the NIS domain to the tweakable knobs.obrien1999-09-141-0/+2
|
* Apparently, it's not console=serial to set the serial console,jkh1999-09-131-1/+1
| | | | | | | it's serial=comconsole. I wish it were easier to figure this stuff out. :) Submitted by: jfieber
* Provide another installation option for GNOME so we have the more "classicjkh1999-09-082-13/+16
| | | | GNOME" desktop that Debian does as an option.
* Only do dhclient once; it has its own internal retry which is more thanjkh1999-09-061-8/+10
| | | | | long enough (and doing it multiple times results in a dialog which waits AGES to complete).
* This commit adds driver support for PCI fast ethernet NICs based onwpaul1999-09-061-0/+1
| | | | | | | | | | | | | | | | the Davicom DM9100 and DM9102 chipsets, including the Jaton Corporation XPressNet. Datasheet is available from www.davicom8.com. The DM910x chips are still more tulip clones. The API is reproduced pretty faithfully, unfortunately the performance is pretty bad. The transmitter seems to have a lot of problems DMAing multi-fragment packets. The only way to make it work reliably is to coalesce transmitted packets into a single contiguous buffer. The Linux driver (written by Davicom) actually does something similar to this. I can't recomment this NIC as anything more than a "connectivity solution." This driver uses newbus and miibus and is supported on both i386 and alpha platforms.
* This commit adds driver support for the Silicon Integrated Systemswpaul1999-09-051-0/+1
| | | | | | | | | | | | SiS 900 and SiS 7016 PCI fast ethernet chipsets. Full manuals for the SiS chips can be found at www.sis.com.tw. This is a fairly simple chipset. The receiver uses a 128-bit multicast hash table and single perfect entry for the station address. Transmit and receive DMA and FIFO thresholds are easily tuneable. Documentation is pretty decent and performance is not bad, even on my crufty 486. This driver uses newbus and miibus and is supported on both the i386 and alpha architectures.
* Update to XFree86 release 3.3.5jkh1999-09-043-54/+54
|
* o Catch up with pnp changes - kget no longer saves pnp data.jkh1999-09-044-61/+6
| | | | o Catch up with ncurses updates - some internal function names have changed.
* It's "router_flags" not "routerflags"jkh1999-09-021-1/+1
| | | | | Submitted by: kasey@ambernetworks.com PR: 13534
* Oh crud, did I ever screw the pooch! Rather than sync this with -stable,jkh1999-09-0219-110/+334
| | | | | | | | | | I backed-out the changes in -current and didn't touch stable at all (I thought I had my patch order reversed, not what actually happened). AIEEE! I can't even blame the crack for this one since I broke my crack pipe a few weeks ago. I think sleep deprivation gets the blame for this one. Medal for noticing this one goes to: Jim Bloom <bloom@acm.org>
* MFC: Catch 3.2-stable sysinstall up to 4.0-current level functionality,jkh1999-09-0119-333/+109
| | | | | | | bringing in DHCP support. The only thing I left out were Poul-Henning's newfs changes since I'm not sure if he's brought the rest of that support into -stable yet. If it turns out that this is the case, I'll MFC those changes too.
* Ppp is started on vty2, not vty3brian1999-09-011-1/+1
|
* Always set the MBR value. When you leave it uninitialized, it seemsjkh1999-08-281-10/+6
| | | | like libdisk does bad things. :)
* $Id$ -> $FreeBSD$peter1999-08-2845-45/+45
|
* Fix a typo.jkh1999-08-271-4/+4
| | | | Reported by: Terry Jones <terry@cliffs.ucsd.edu>
* Fix assorted style problems and bring up to date.jkh1999-08-221-36/+87
| | | | | Submitted by: Alexey M. Zelkin <phantom@cris.net> PR: 13271
* This commit adds device driver support for the Sundance Technologies ST201wpaul1999-08-211-1/+2
| | | | | | | | | | | | | PCI fast ethernet controller. Currently, the only card I know that uses this chip is the D-Link DFE-550TX. (Don't ask me where to buy these: the only cards I have are samples sent to me by D-Link.) This driver is the first to make use of the miibus code once I'm sure it all works together nicely, I'll start converting the other drivers. The Sundance chip is a clone of the 3Com 3c90x Etherlink XL design only with its own register layout. Support is provided for ifmedia, hardware multicast filtering, bridging and promiscuous mode.
* Quiet some overly chatty debug output, do some minor cleanups tojkh1999-08-212-17/+19
| | | | the DHCP support code.
* Fix a bunch of broken cross-referenceschris1999-08-181-2/+2
|
* The sysinstall man page menetions that it was due to be replacedmpp1999-08-171-7/+6
| | | | | | | | | | | | | in a previous FreeBSD version. That never happened. Document that it is due to be replaced, but leave it open-ended as to when. Also do some mdoc cleanup. PR: docs/13148 PR: docs/13144 Submitted by: Lee Cremeans <lcremeans@erols.com> Alex M. Zelkim <phantom@cris.net> Discussed with: jkh
* Re-enable play-nice-with-DHCP option now that bpf is the defaultjkh1999-08-071-3/+1
| | | | | in GENERIC. Now a dhcp-configured system will both install and boot initially with proper interface configuration.
* Add a local distribution under the "costum distribution" menu.sos1999-08-053-4/+8
| | | | This allows to add local additions on install time..
* Make the newfs parameters a global option.phk1999-08-054-5/+11
| | | | | | The default is still "-b 8192 -f 1024" but my experiments show that "-b 16384 -f 4096 -c 100" is a more sensible value for modern disksizes.
* Stay on the serial console if installed that way.jkh1999-08-051-1/+3
| | | | Requested by: max
* Add new ports category "ftp".asami1999-08-021-1/+2
|
* Add the 'Swiss' font, which refers to the name of the font, not the locale.billf1999-07-291-1/+3
| | | | Apologies To: Dan Nelson <dan@emsphone.com>
* we only need to declare i if we are building for the alpha.billf1999-07-291-1/+3
|
* Allow room for editing labels on disks that are >= 10000Mbbrian1999-07-291-5/+5
| | | | Submitted by: Josef L. Karthauser <joe@uk.FreeBSD.org>
* Don't show fdisk choice on Alpha.jkh1999-07-291-1/+5
| | | | Suggested by: obrien
* Add a default ppp.conf (mode 600).brian1999-07-262-6/+12
| | | | | | | | | | | | Originally submitted by: Wayne Self <wself@cdrom.com> Allow a ppp startup option in rc.conf. Adjust sysinstall so that it appends to the end of ppp.conf and uses the generated profile to start ppp in auto mode on boot. Submitted by: Josef L. Karthauser <joe@uk.FreeBSD.org>
* This commit adds device driver support for Adaptec Duralink PCI fastwpaul1999-07-251-1/+2
| | | | | | | | | | | | | | | | | | | | | ethernet controllers based on the AIC-6915 "Starfire" controller chip. There are single port, dual port and quad port cards, plus one 100baseFX card. All are 64-bit PCI devices, except one single port model. The Starfire would be a very nice chip were it not for the fact that receive buffers have to be longword aligned. This requires buffer copying in order to achieve proper payload alignment on the alpha. Payload alignment is enforced on both the alpha and x86 platforms. The Starfire has several different DMA descriptor formats and transfer mechanisms. This driver uses frame descriptors for transmission which can address up to 14 packet fragments, and a single fragment descriptor for receive. It also uses the producer/consumer model and completion queues for both transmit and receive. The transmit ring has 128 descriptors and the receive ring has 256. This driver supports both FreeBSD/i386 and FreeBSD/alpha, and uses newbus so that it can be compiled as a loadable kernel module. Support for BPF and hardware multicast filtering is included.
* Disable more PC98isms on the Alphajkh1999-07-231-1/+9
|
* More changes for the Alpha X support - don't list PC98 servers since they makejkh1999-07-234-4/+20
| | | | no sense here but list the TGA server, since it does.
* Deal with new linux compat package naming.jkh1999-07-221-2/+2
| | | | Submitted by: Marcel Moolenaar <marcel@scc.nl>
* Intentionally do the wrong thing in using the initial DHCP values forjkh1999-07-221-1/+3
| | | | | | | | | | | | | ifconfig, essentially stealing the lease until the user goes and changes it. The alternative, sadly, is total dysfunction since bpf isn't in GENERIC and network connectivity would otherwise fail completely on first bootup when DHCP configuration was attempted again. The ultimate answer here is to make either bpf a loadable kernel module (which security conscious admins will be able to simply remove from /modules) or come up with a lighter weight mechanism just for dhcp and other apps that need to see broadcast packets but not otherwise sniff the wire in full bpf glory.
* XFree86 3.3.4 seems to require "XWINHOME" to be set for the setup tooljkh1999-07-201-1/+2
| | | | to work (fnark).
* The matcd driver is acting strange (returning a successful open evenjkh1999-07-201-1/+3
| | | | when it fails). Disable it in sysinstall for now.
* Fix a bad dhcp keyword; it's host-name not server-name.jkh1999-07-201-3/+3
|
* Add slovakian ftp mirror.jkh1999-07-201-1/+3
| | | | Submitted by: "Tomas TPS Ulej" <tps@ti.sk>
OpenPOWER on IntegriCloud