Commit Graph

2216 Commits

Author SHA1 Message Date
markm
6491ecd71a Add bits of PAO that are non-controversial.
Submitted by: Tatsumi HOSOKAWA
1999-06-17 19:04:56 +00:00
roger
6ea3db6934 MFS: No longer needed with PicoBSD 0.44 1999-06-15 12:51:57 +00:00
roger
56ced8ddfc MFS: No longer needed in PicoBSD 0.44 1999-06-15 12:40:32 +00:00
roger
d66dc63b38 MFS: No longer needed in PicoBSD 0.44 1999-06-15 11:45:25 +00:00
roger
a5ee39b837 MFS: No longer needed in PicoBSD 0.44 1999-06-15 11:40:13 +00:00
roger
8ca92b9b95 Last commit was incorrect. Remove the 'rp' PCI device 1999-06-14 18:16:51 +00:00
roger
746dbf8125 Comment out the PCI Comtrol Rocketport entries.
The PicoBSD 'isp' build fails when both the PCI and ISA versions of the
'rp' driver are included at the same time
1999-06-14 18:08:17 +00:00
roger
935b9e8f36 Update to PicoBSD 0.44 from RELENG_3 1999-06-14 16:48:23 +00:00
roger
1d10595f4f Update to PicoBSD 0.44 (from RELENG_3) 1999-06-14 16:36:50 +00:00
roger
8aaed59fdd Update to PicoBSD 0.44 from RELENG_3 1999-06-14 15:45:56 +00:00
roger
896f01d1d7 Update to PicoBSD 0.44 from RELENG_ 1999-06-14 15:45:41 +00:00
jkh
35bc156280 Remove apple.com from time server list.
Submitted by:	Mike Haro
1999-06-09 09:18:33 +00:00
jkh
da76641a7a Various edits to shrink fixit and enable dhcp-client 1999-06-09 09:08:22 +00:00
ru
6f4d765d04 Switch to proper mbr.
OK'ed by:	jkh,rnordier
1999-06-04 10:01:53 +00:00
jkh
932326ab45 Don't put CVS files in ports. It's kinda useful for cvs updating
a ports tree which was installed initially with the system later,
but this is probably not the general case (user CVSups the repository
rather than the checked-out bits) and it's penalizing everyone else
with excessive inode consumption.
1999-05-29 00:42:05 +00:00
wpaul
fa6fffc6ff Fix support for the PNIC II. Earlier I had assumed that the PNIC II was
similar to the PNIC I (supported by the pn driver). In fact, it's really
a Macronix 98715A with wake on LAN support added. According to LinkSys,
the PNIC II was jointly developed by Lite-On and Macronis. I get the
feeling Macronix did most of the work. (The datasheet has the Macronix
logo on it, and is in fact nearly identical to the 98715 datasheet, except
for the extra wake on LAN registers.) In any case, the PNIC II works just
fine with the Macronix driver.

The changes are:

- Move PCI ID for the PNIC II from the pn driver to the mx driver.
- Mention PNIC II support in mx.4.
- Mention PNIC II support in RELNOTES.TXT and HARDWARE.TXT.
1999-05-28 18:43:25 +00:00
jkh
4e040793c0 Do a clean-up pass on error/warning messages. 1999-05-27 10:32:50 +00:00
hoek
d5c1482e68 Update for post 3.2R since this'll be quickly forgotten otherwise.
Say, isn't about time for a -SNAP release?
1999-05-24 23:52:46 +00:00
hoek
a4b567ebac MF3S: typo 1999-05-24 23:44:57 +00:00
hoek
9ddfd1ba1d Typos (one reported in misc/11876 by Andrew Boothman <andrew@cream.org>) 1999-05-24 23:32:00 +00:00
roger
c32c865045 Update PicoBSD kernel config files. Changes are
removal of bio, tty, net
  removal of quotes
  switches from isa? to nexus? or atkbdc?
  additional comments

  These bring the kernel config files in sync with those in
  RELENG_3
1999-05-24 17:27:30 +00:00
brian
66a6cb8739 Use RELENG_3 as an example, not RELENG_2_2. 1999-05-23 20:01:20 +00:00
wpaul
97a90dc5c9 - Fix up some comments in if_wi.c (no code changes)
- Mention that the 6Mbps turbo adapters are supported in HARDWARE.TXT
  and RELNOTES.TXT and the wi.4 man page
- Mention turbo adapters in the wicontrol.8 man page and provide a
  complete table of available transmit speed settings
1999-05-22 16:12:54 +00:00
obrien
d872cabe61 Remove `ix' driver. Justin Gibbs added support for the EtherExpress16 to
the `ie' driver in rev 1.41 of if_ie.c on 1997/04/14.  Thus retiring the
`ix' driver.

Forgotten by:	gibbs
1999-05-22 02:33:08 +00:00
obrien
384867a2bd Remove duplicated `ex0' entry. 1999-05-21 18:28:32 +00:00
jkh
be862454f7 Don't do anything on alpha machines. 1999-05-21 11:00:56 +00:00
roberto
fce08ec900 ftp3.fr.freebsd.org (UVSQ, Versailles, France) has been available for a long
time.

Submitted by:	Rémy Card <Remy.Card@csi.uvsq.fr>
1999-05-21 07:10:35 +00:00
wpaul
60b2d4c5bd This commit adds driver support for PCI fast ethernet cards based on the
ADMtek AL981 "Comet" chipset. The AL981 is yet another DEC tulip clone,
except with simpler receive filter options. The AL981 has a built-in
transceiver, power management support, wake on LAN and flow control.
This chip performs extremely well; it's on par with the ASIX chipset
in terms of speed, which is pretty good (it can do 11.5MB/sec with TCP
easily).

I would have committed this driver sooner, except I ran into one problem
with the AL981 that required a workaround. When the chip is transmitting
at full speed, it will sometimes wedge if you queue a series of packets
that wrap from the end of the transmit descriptor list back to the
beginning. I can't explain why this happens, and none of the other tulip
clones behave this way. The workaround this is to just watch for the end
of the transmit ring and make sure that al_start() breaks out of its
packet queuing loop and waiting until the current batch of transmissions
completes before wrapping back to the start of the ring. Fortunately, this
does not significantly impact transmit performance.

This is one of those things that takes weeks of analysis just to come
up with two or three lines of code changes.
1999-05-21 04:37:48 +00:00
jkh
16257372e5 Add CHAP/PAP question to the ppp setup dialog, simplifying things considerably
for some.

Submitted by:	Jack O'Neill <jack@germanium.xtalwind.net>
1999-05-19 10:49:46 +00:00
jkh
4139ed9cea Add ftp5.uk.freebsd.org
Submitted by:	Roger Hardiman <roger@cs.strath.ac.uk>
1999-05-19 08:56:56 +00:00
n_hibma
eda8109f76 Update the list of devices supported (nothing spectacular) 1999-05-18 22:48:18 +00:00
jkh
db30e58662 deal with a.out ldconfig paths also. 1999-05-18 00:44:28 +00:00
phk
c0bcaf4af8 More crypto bogosity.
(I just built a current snap-shot)
1999-05-16 12:21:54 +00:00
phk
b72d5cc0d2 INSTALL.TXT is gone in -current (despite what Jordan says :-)
kerberisIV requires crypto as well.
1999-05-16 08:07:34 +00:00
phk
e181872474 cp ${KERNEL} instead of cp kernel 1999-05-15 19:05:40 +00:00
jkh
5ff0e21e0e Small typo in windowmaker startup line. 1999-05-15 15:05:08 +00:00
jkh
33daa8b33a o Prevent alpha installs from grabbing x86 bits and vice-versa, at least
on CDs and FTP sites.

o Collapse some redundant code.

o Fix typo'd menu.

o Restrict searches properly to packages rather than categories.

o Small tweaks to signal handling.

All RELENG_3 candidates.
1999-05-15 14:34:22 +00:00
jkh
13644a2bd2 target is ${KERNEL}, not kernel.
Noticed by:	"John W. DeBoskey" <jwd@unx.sas.com>
1999-05-15 11:51:39 +00:00
jkh
b0c0e1b73c Do more impressive things for windowmaker. 1999-05-14 15:04:24 +00:00
jkh
1b54d78ab8 DTRT for "Latest" search keywords. 1999-05-14 14:57:59 +00:00
jkh
10b41baa24 Be properly verbose. 1999-05-14 14:29:50 +00:00
jkh
a495fcc3b2 Correct return status logic a bit. 1999-05-14 12:15:34 +00:00
jkh
dadd91f609 Yikes! I almost left out the 3D Labs server. :) 1999-05-14 07:15:05 +00:00
jkh
3274538263 fix stupid typo. 1999-05-13 02:49:23 +00:00
jkh
20b81702c7 Correct a bug which could cause a segfault if there is no uc_devlist
data.

Noticed by:	Bill Swingle <bill@cdrom.com>
1999-05-12 23:08:02 +00:00
jkh
72cdb4b9f5 Update norwegian time server.
Noted by:	dag
1999-05-12 22:06:00 +00:00
jkh
ce6e6ffd26 Add some extra checks to make *sure* we got what we were told we got. 1999-05-12 09:22:47 +00:00
jkh
b76d716b0e Completely change the way package_add() does its work. Now we
handle dependencies at a lower level and use package add for this.
Also made index searches stricter.
1999-05-12 09:02:37 +00:00
jkh
ef8e0e87fe Support divergent docs for different architectures. 1999-05-12 08:19:54 +00:00
jkh
817dbc4a10 Punt! This file is now architecture specific. 1999-05-12 08:17:56 +00:00