107277 Commits

Author SHA1 Message Date
martti
405c73366e Back out previous (as discussed with releng). The correct way to set this is:
# echo "myserver" > /var/yp/binding/`domainname`.ypservers
2003-01-16 11:55:28 +00:00
pk
26fa27a910 Fix reboot options handling; now one-letter kernel names can also be booted. 2003-01-16 11:33:21 +00:00
kleink
b3df6303a9 Rename `sigset' locals to avoid symbol shadowing warning. 2003-01-16 09:38:37 +00:00
matt
0ccdd339c8 A small LP64 fix. 2003-01-16 09:17:01 +00:00
itohy
4e2a4fe8fc Fix problem where dlclose() falls into infinite loop. 2003-01-16 08:45:56 +00:00
msaitoh
e43fc70de5 catch SIGINT, SIGHUP, SIGQUIT and SIGTERM to clear a temporary file. 2003-01-16 08:05:09 +00:00
martti
1e0411d0d5 Script to bind a NIS client to a known server.
$ grep yp /etc/rc.conf
ypbind=YES
ypbind_flags="-ypset"
ypset=YES
ypset_flags="myserver"
2003-01-16 07:37:33 +00:00
matt
76fda2e342 Add ISA Floppy (to be consistent with INSTALL). 2003-01-16 07:23:06 +00:00
matt
81d3f59353 Add PLATFORM_IBM_6040 2003-01-16 06:59:19 +00:00
wiz
9c5cdbe4bc Note cvs-1.11.4 update in basesrc. 2003-01-16 03:25:24 +00:00
wiz
f4edd8365f s/netbsd.com/netbsd.org/
Note cvs-1.11.4 update, and take co-responsibility for it.
2003-01-16 03:24:34 +00:00
wiz
7db7049e69 More diff reduction vs 1.11.4 (actually a merge error...). 2003-01-16 03:15:55 +00:00
wiz
250491c9af More syncing with cvs-1.11.4. 2003-01-16 03:06:43 +00:00
petrov
b5be66abcd Move dump_dtlb back under DDB. 2003-01-16 03:01:23 +00:00
wiz
730bdec1d2 Remove Dollar signs around another Id tag. 2003-01-16 03:00:37 +00:00
wiz
1da4d8f87c Minimize diffs with 1.11.4. 2003-01-16 02:57:47 +00:00
wiz
75b23fb832 Unused. 2003-01-16 02:51:20 +00:00
wiz
f099694510 Replaced by cvsbug.in. 2003-01-16 02:50:12 +00:00
wiz
1ae8b014e0 Unneeded. 2003-01-16 02:49:27 +00:00
wiz
a1c160fcab Replaced by cvs.spec.in for some time now. 2003-01-16 02:45:57 +00:00
wiz
bc095c7c0b Renamed to *.in for some time now. 2003-01-16 02:45:06 +00:00
wiz
680c69437a Changes to build 1.11.4. 2003-01-16 02:37:00 +00:00
wiz
f4d12e1051 Fix import instructions -- gnusrc is gone. 2003-01-16 02:35:17 +00:00
wiz
6aa895a2be Fix conflicts, merge to 1.11.4. 2003-01-16 02:33:08 +00:00
matt
72020abb85 Add platform support for the IBM PPS Model 6040 (E) (aka ThinkPad 820). 2003-01-16 02:18:20 +00:00
wiz
0cd0661e77 Import cvs-1.11.4. 2003-01-16 02:15:31 +00:00
simonb
c018fbe68d Tidy up event counter increments a little. 2003-01-16 01:14:17 +00:00
simonb
c69f520bc8 Removed unused register map; this info is now passed in with the attach
args.
2003-01-16 01:05:39 +00:00
gendalia
6fc88ea9a4 Add support for 3com 3c905CX-TX found on nForce2 MCP-T. 2003-01-16 01:02:06 +00:00
gendalia
e203560afd add support for nForce2 MCP-T 2003-01-16 01:00:06 +00:00
kleink
f18fe39c3f Pasto; from Thomas Klausner. 2003-01-16 00:46:58 +00:00
gendalia
53ab5df4af regen after pcidevs is committed so the correct version number is embedded.
Thanks to wiz.
2003-01-16 00:45:57 +00:00
wiz
ec87827023 typo fixes. 2003-01-16 00:33:12 +00:00
gendalia
4ae8b800fb Add 3com 3c905CX-TX and Nvidia nForce2 MCP-T ac-97, on the ASUS A7N8X Deluxe
motherboard, Chipset: NVIDIA nForce2 MCP-T
2003-01-16 00:32:46 +00:00
kleink
ee051ce446 Add sighold(3), sigignore(3), sigrelse(3), and sigset(3). 2003-01-16 00:02:46 +00:00
kleink
5b86f73eda libc 12.92. 2003-01-15 23:58:57 +00:00
kleink
140dae96a7 Rename auto variable shading global sigset(). 2003-01-15 23:58:03 +00:00
kleink
42b44c12f9 Bump to 12.92: sighold, sigignore, sigrelse, sigset. 2003-01-15 23:56:35 +00:00
kleink
30a90a73b4 Add sighold(3), sigignore(3), sigrelse(3) and sigset(3) to libc.
Fixes PR lib/19212, now redesignated standards/19212, from David Laight.
2003-01-15 23:55:41 +00:00
kristerw
78307cec5d Correct return type for initscr().
From Joel Wilsson in PR 19809.
2003-01-15 23:13:51 +00:00
pk
c70db21e38 lock_printf(): use vsnprintf/printf_nolog to avoid covertly using the system
log and thereby invoking scheduler code.
2003-01-15 23:11:05 +00:00
pk
a5cea9e740 On Hypersparc MP machines, we need to flush the TLB after a page cache flush.
While the pmap functions take care of properly ordering cache and TLB flushes,
not all TLB flush requests are sent to all CPUs (due to per CPU pmap tracking)
while cache flushes are always broadcast.

XXX: need to investigate pmap tracking for cache flush operation as well.
2003-01-15 22:56:32 +00:00
kleink
912ab720a8 Move SIG_HOLD from <sys/signalvar.h> to <sys/signal.h>, since POSIX-2001
wants that name to be exposed.
2003-01-15 22:48:21 +00:00
bouyer
2d7b577657 When padding to URL_MIN_FRAME_LEN, memset the extra buffer space used. 2003-01-15 22:40:34 +00:00
bouyer
93ac594a91 Add a #error message asking to fix frame padding (this driver doesn't
compile anyway).
2003-01-15 22:38:59 +00:00
bouyer
194fbd836f Use a properly zero'd buffer to pad the packet to ETHER_MIN_LEN-ETHER_CRC_LEN 2003-01-15 22:35:47 +00:00
bouyer
bcae687139 Zero out the NIC memory when padding packet to ETHER_MIN_LEN-ETHER_CRC_LEN
sc->write_mbuf now return len of buffer, including padding.
Tested with a PCI ne2000.
2003-01-15 22:20:03 +00:00
bouyer
fddee95ba4 Ragge said this chip should autopad, so just remove the check. 2003-01-15 22:12:31 +00:00
bouyer
65856947c5 Zero out the extra space stolen from mbuf to pad packet to ETHER_MIN_LEN
XXX should it be ETHER_MIN_LEN - ETHER_CRC_LEN ?
XXX2 we assume there are enouth space in the mbuf for the padding bytes.
     But other places in the code assumes this already.
2003-01-15 22:10:25 +00:00
bouyer
0a5eae1855 ragge said this chip should autopad, so just remove the check for len. 2003-01-15 22:08:08 +00:00