summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
* Fix a problem in printing interface names.luigi1999-08-121-9/+13
|
* update list of ISDN hardware supported by isdn4bsd 0.83hm1999-08-071-3/+8
|
* 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
* I was clearly smoking crack when I committed the change to allow forjkh1999-08-051-3/+15
| | | | | | | architecture-specific docs on the boot floppy and CDROM. Do it right this time. Noticed by: jhay
* Turn docs back on - ache was very quick.jkh1999-08-051-2/+2
|
* Turn docs off by default again - somebody has broken the docproj port.jkh1999-08-041-2/+2
|
* Add new ports category "ftp".asami1999-08-021-1/+2
|
* Add INSTALL.TXT back.jkh1999-07-311-2/+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
* Change "telesis" to "telesyn" to reflect their change of name.nik1999-07-271-2/+2
| | | | | PR: docs/12435 Submitted by: Adam Kranzel <shade@dnai.com>
* 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
|
OpenPOWER on IntegriCloud