summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
* 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-253-1/+23
| | | | | | | | | | | | | | | | | | | | | 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>
* More Alpha ifdefage.jkh1999-07-202-2/+14
|
* Get bpf0 onto the MFS image.jkh1999-07-201-2/+2
|
* sync with boot_crunch.conf.generichosokawa1999-07-191-3/+4
| | | | (added arp, sed, and test)
* Catch an XFree86 3.3.4 update I missed.jkh1999-07-191-4/+4
|
* Update for XFree86 3.3.4jkh1999-07-192-53/+53
|
* Wait for dhclient in a far saner fashion.jkh1999-07-191-4/+9
| | | | Submitted by: obrien
* Add /bin/test to the boot floppy. Guess we'll have to sync this upjkh1999-07-191-2/+3
| | | | with boot_crunch.conf.pccard at some point?
* cleanup pass over new stuff.jkh1999-07-191-14/+5
|
* Another batch of fixes for dhcp support in sysinstall, now draggingjkh1999-07-196-78/+248
| | | | | | | | in some code from C. Stone to parse the lease information. This is still a WIP and this commit is largely intended to allow others to sync up; the dhclient code still only works when doing dhcp configuration post-install and requires a bit more work on the boot floppy before it will truly work in the minimal bootstrapping role.
* Some additional optimizations for using DHCP.jkh1999-07-184-9/+17
|
* Miscellaneous fixes for dhcp client support.jkh1999-07-183-5/+8
|
* Add arp to the boot floppy.jkh1999-07-171-2/+2
|
* Add in a hack to turn off unaligned access warnings for alpha.jkh1999-07-161-2/+6
| | | | Submitted by: msmith
* Don't offer compat dists on alpha since it makes no sense to do so.jkh1999-07-163-4/+14
| | | | Suggested by: msmith
* Re-enable DHCP client support again (but optional and turned off by defaultjkh1999-07-165-22/+80
| | | | | | for the time being) for debugging purposes. Fix bug in options selection.
* Update ThinkPad special mode entry for atkbd0. Add an entry dealingrnordier1999-07-151-4/+25
| | | | | | with failure to detect XT/AT-style keyboards in boot2 during install. Submitted by: yokota
* Change the wrong URL of back-issue FreeBSD newsletter.foxfair1999-07-141-1/+1
|
* This commit adds driver support for the SysKonnect SK-984x serieswpaul1999-07-093-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gigabit ethernet adapters. This includes two single port cards (single mode and multimode fiber) and two dual port cards (also single mode and multimode fiber). SysKonnect is currently the only vendor with a dual port gigabit ethernet NIC. The ports on dual port adapters are treated as separate network interfaces. Thus, if you have an SK-9844 dual port SX card, you should have both sk0 and sk1 interfaces attached. Dual port cards are implemented using two XMAC II chips connected to a single SysKonnect GEnesis controller. Hence, dual port cards are really one PCI device, as opposed to two separate PCI devices connected through a PCI to PCI bridge. Note that SysKonnect's drivers use the two ports for failover purposes rather that as two separate interfaces, plus they don't support jumbo frames. This applies to their Linux driver too. :) Support is provided for hardware multicast filtering, BPF and jumbo frames. The SysKonnect cards support TCP checksum offload however this feature is not currently enabled (hopefully it will be once we get checksum offload support). There are still a few things that need to be implemeted, like the ability to communicate with the on-board LM80 voltage/temperature monitor, but I wanted to get the driver under CVS control and into -current so people could bang on it. A big thanks for SysKonnect for making all their programming info for these cards (and for their FDDI and token ring cards) available without NDA (see www.syskonnect.com).
* DEFAULT_PAGE_SIZE was removed, pgtok defined in headers, headers cleaned up.green1999-07-081-3/+4
| | | | Obtained from: Jonathan Towne <jontow@sysctl.urban-a.net>
* invoke fvwm properlyjkh1999-07-071-3/+3
|
* update fla related entries.phk1999-07-061-3/+3
|
* Rename bpfilter to bpf.des1999-07-066-7/+7
|
* Added a short README to PC-card boot.flp directory.hosokawa1999-07-062-1/+15
| | | | (please check English grammer...:-) )
* Don't ask about Linux emulation on the alpha (for now).jkh1999-07-062-2/+6
|
* Use #include <pccard_conf.h> instead of -DPCCARD.hosokawa1999-07-064-10/+18
| | | | Now we don't have to make clean before make boot.flp's.
* Add an option for more fully enabling linux compatibility.jkh1999-07-065-10/+31
|
* Exclude CHECKSUM.MD5 itself from CHECKSUM.MD5 in PC-card floppy directory.hosokawa1999-07-061-2/+2
|
* My last modification for PC-card boot.flp was incomplete, and one more patchhosokawa1999-07-051-1/+6
| | | | | | is needed. This seems a sort of quick-hack, but it's hard to fix it in proper way. I'll do it later.
* configure "pccardd_flags" in /etc/rc.conf by sysinstall.hosokawa1999-07-041-3/+8
|
* Modified to configure pccard_mem in /etc/rc.conf by sysinstall.hosokawa1999-07-041-1/+5
|
* make release (actually, make floppies) makes PC-card boot.flp automatically.hosokawa1999-07-041-3/+14
|
* wcd -> acdmharo1999-07-031-2/+2
| | | | Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* It's really mP6.green1999-07-031-1/+1
| | | | :)
* Mention the Rise MP6, list merged items. There are probably a pile moremsmith1999-07-021-3/+5
| | | | changes that need to be listed here.
* Eliminate some varargs abuse.jkh1999-07-024-27/+28
|
* Update these files to match current reality.jkh1999-07-023-1588/+10
|
* Fix stupid error where more bits where set than actual distributionsjkh1999-07-021-2/+2
| | | | | | used. Doh! Embarassingly-pointed-out-by: Brian Dean <brdean@unx.sas.com>
* Changed pcicmem and cardirq variables to non-dirty variables.hosokawa1999-06-301-10/+10
|
* Removed unused boot_crunch.confhosokawa1999-06-295-0/+0
|
* New ports/{java,irc,x11-servers} categories, Step #5 - update misc files.billf1999-06-281-1/+4
|
OpenPOWER on IntegriCloud