Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-05-16 | shorten device probe messages to 2 lines | Theo de Raadt | |
1998-05-14 | change debug poke colors | Michael Shalayeff | |
1998-05-14 | * Better XR16C850 support. | Jason Downs | |
* Copyright. * General cleanup. | |||
1998-05-13 | making kernel, drinking LI tea and writing an opus magnum enspired | Michael Shalayeff | |
by the freebsd commit logs: first of all i should state that we are the only os that uses pentium counters in their microtime (freebsd, netbsd, etc checked). the bug fixed derives from the fact that #UD (divide by zero) is generated in two cases: a) divide by zero; b) divide overflow. so, the later case was the one causing panics on reboot. due to the divl insn design in the intel processors, the possible sizes of operands and results are: 16/8=8,8; 32/16=16,16; 64/32=32,32. the division will generate an #UD exception when the quotient won't fit into result, that is 32bit in our case (64bit is divided on 32bit). problem solved by normalizing the dividend by the divisor, so the quotient would not result a divide overflow. tested by: mickey, gene, mickey. talked over: mickey, gene, marc, maillists, mickey. | |||
1998-05-13 | bad todd | Theo de Raadt | |
1998-05-13 | main returns int, not void | Todd C. Miller | |
1998-05-10 | 80386 specific fix for copyoutstr crossing a page boundary; ↵ | Theo de Raadt | |
drochner@zelux6.zel.kfa-juelich.de | |||
1998-04-27 | cleanup messages a bit | Theo de Raadt | |
1998-04-26 | use a rel. path for compat/ossaudio | Niels Provos | |
1998-04-26 | attach audio device to sound cards | Niels Provos | |
1998-04-26 | update audio from NetBSD, mostly by Lennart Augustsson <augustss@cs.chalmers.se> | Niels Provos | |
1998-04-25 | convert i386 to MNN | Michael Shalayeff | |
1998-04-25 | fix some more printf's where a long arg was specified that is u_int32_t | Todd C. Miller | |
1998-04-20 | no need for debug options by default, now that the bug is dead | Theo de Raadt | |
1998-04-20 | fix the problem w/ /boot being fragmented in a non-contig | Michael Shalayeff | |
blocks. fixed by flushing the previous blocks completely before starting new record for a new block(s) location. | |||
1998-04-18 | %0x support went away | Theo de Raadt | |
1998-04-18 | i386 bootblocks that work for 2.3. A tale too long to tell | Theo de Raadt | |
1998-04-13 | the problem is in /boot, not in biosboot | Theo de Raadt | |
1998-04-11 | Well, the changes make do not work | Theo de Raadt | |
1998-04-05 | Support for the XR16850; currently just treat it like an ST16650V2 with | Jason Downs | |
bigger FIFOs. | |||
1998-04-03 | new changes from weingart: -DDEBUG not needed anymore | Theo de Raadt | |
1998-04-02 | remove the last uses of spt and tpc | Theo de Raadt | |
1998-04-01 | Add a write function and make the raw mode real raw in the PS/2 driver | Matthieu Herrb | |
to support extended PS/2 protocol under XFree86. From NetBSD port-i386/5130 by Lennart Augustsson <augustss@cs.chalmers.se>, adapted to OpenBSD by myself. | |||
1998-04-01 | PS/2 mouse is read/write | Matthieu Herrb | |
1998-03-30 | temporary fixes to the bootblocks | Theo de Raadt | |
1998-03-28 | complete TVGA 9660 support | Theo de Raadt | |
1998-03-28 | add ep* at isapnp; move le0 to where GENERIC expects it | Theo de Raadt | |
1998-03-28 | grok trident 9660 | Theo de Raadt | |
1998-03-28 | support ed* at pci? | Theo de Raadt | |
1998-03-24 | correct isp header | Theo de Raadt | |
1998-03-24 | add isp driver from netbsd, more munging needed | Theo de Raadt | |
1998-03-22 | Add UID_MAX and GID_MAX | Todd C. Miller | |
1998-03-20 | Some cleanup of page steals | Niklas Hallqvist | |
1998-03-20 | Add PnP 'ep' driver. | dgregor | |
1998-03-18 | ${DEBUG} var propagation | Michael Shalayeff | |
1998-03-16 | doc machine commands | Michael Shalayeff | |
1998-03-16 | please gcc (couldn't find any reference, so just deleted offending declaration) | Jason Downs | |
1998-03-15 | enable softupdates | Michael Shalayeff | |
1998-03-11 | make usage message much prettier | Theo de Raadt | |
1998-03-11 | change CPPFLAGS= to CPPFLAGS+= - so that the definition of -DSERIAL | Thomas Graichen | |
in mbr/Makefile will not be overridden (seems like nobody is using a serial console) | |||
1998-03-11 | remove wrong end of comment which breaks compilation with -DSERIAL | Thomas Graichen | |
enabled | |||
1998-03-11 | delete blank line | Theo de Raadt | |
1998-03-08 | move to 2.3 | Theo de Raadt | |
1998-03-04 | please gcc 2.8 | Theo de Raadt | |
1998-03-04 | nicer print | Jason Downs | |
1998-03-03 | Add -Wno-main for GCC 2.8 | Niklas Hallqvist | |
1998-03-03 | fix attach message | Theo de Raadt | |
1998-03-01 | Fix int overflow | Tobias Weingartner | |
1998-03-01 | Conditionalize decl | Niklas Hallqvist | |
1998-03-01 | Merge of MACHINE_NEW_CONTIG (aka MNN) code from Chuck Cranor, | Niklas Hallqvist | |
<chuck@openbsd.org>. This code is as of yet disabled on all platforms, actually not yet supported on more than mvme68k, although other platforms are expected soon, as code is already available. This code makes handling of multiple physical memory regions consistent over all platforms, as well as keeping the performance of maintaining a single continuous memory chunk. It is also a requirement for the upcoming UVM replacement VM system. What I did in this merge: just declared the pmap_map function in a MD include file per port that needs it. It's not an exported pmap interface, says Chuck. It ended up in differnt include files on differnet ports, as I tried to follow the current policy on a per-arch basis. |