Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-05-28 | grow kernel malloc area by 2M | Michael Shalayeff | |
1998-05-27 | conditional LD definition | Michael Shalayeff | |
1998-05-27 | Fix warning in non-68040 case; jason@couch.com | Todd C. Miller | |
1998-05-25 | put support for test /boot environment back; some CLEANFILES and spaces | Michael Shalayeff | |
1998-05-25 | more CLEANFILES; oops | Michael Shalayeff | |
1998-05-25 | more CLEANFILES | Michael Shalayeff | |
1998-05-25 | Remove gobs of unneeded code. | Jason Downs | |
1998-05-25 | Major cleanup of configuration code; don't assume all the world is Intel, and | Jason Downs | |
don't duplicate the work of locore. | |||
1998-05-25 | Fix Cyrix model names and add MediaGX/GXm; add feature bit display. | Jason Downs | |
1998-05-25 | Add support for feature bit listing; fix #defines. | Jason Downs | |
1998-05-22 | do not assume ttys or bpps exist; plunky@skate.demon.co.uk | Theo de Raadt | |
1998-05-22 | magma in both these | Theo de Raadt | |
1998-05-22 | include <machine/locore.h> instead of <pmax/locore.h> - this should solve | Thomas Graichen | |
the make depend problem noted by Nino Margetic (nino@well.ox.ac.uk) | |||
1998-05-22 | More AMD model names. | Jason Downs | |
1998-05-22 | Delete a NetBSD <-> OpenBSD "oops" from my previous merge. | gene | |
1998-05-22 | Start the timeout's if sparc_led_blink is initialized to true | Jason Wright | |
1998-05-21 | typo | Matthieu Herrb | |
1998-05-20 | magma serial driver; plunky@skate.demon.co.uk | Theo de Raadt | |
1998-05-19 | cross-compile ready | Michael Shalayeff | |
1998-05-18 | start using new apiver things | Michael Shalayeff | |
1998-05-18 | new cpureg.h from NetBSD plus modifications to use the changed macro names | Todd C. Miller | |
1998-05-17 | bus.h from NetBSD, does not implement OpenBSD extensions yet. | Todd C. Miller | |
1998-05-17 | Intercept all targets in cross-mode | Niklas Hallqvist | |
1998-05-17 | Automatically detect cross-compilation case. If you have an i386 | Niklas Hallqvist | |
(well that is the only tested host environment for the time being) and would like to test the support, do this: cd /usr/src make TARGET=vax cd sys/arch/vax/conf config MYKERNEL cd ../compile/MYKERNEL make and you should get a nicely compiled vax kernel. This is WIP, so do not expect robustness quite yet. | |||
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 | We are OpenBSD. That and international :-) | Niklas Hallqvist | |
1998-05-14 | KNF | Niklas Hallqvist | |
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 | Use DEV_BSIZE instead of the wasteful MAXBSIZE for buffer size. | Niklas Hallqvist | |
1998-05-13 | main returns int, not void | Todd C. Miller | |
1998-05-12 | typo | Todd C. Miller | |
1998-05-11 | s/ffs_mountroot/dk_mountroot/, name RD disks "hd" to not conflict | Niklas Hallqvist | |
with the MI ramdisk device | |||
1998-05-11 | use ${SIZE} instead of size, for cross | Niklas Hallqvist | |
1998-05-11 | Revert to 1.8, the corruption prob I had was local, and cvs did | Niklas Hallqvist | |
not notice it, thus I thought it was in the repos | |||
1998-05-11 | Type correctness for GCC 2.8.1 | Niklas Hallqvist | |
1998-05-11 | Added som new defines needed | Niklas Hallqvist | |
1998-05-11 | Hmm another corrupt file, updated lost tail from NetBSD | Niklas Hallqvist | |
1998-05-11 | We are OpenBSD | Niklas Hallqvist | |
1998-05-11 | $OpenBSD$ | Niklas Hallqvist | |
1998-05-11 | Lots of changes to make obj dirs and cross-compilation work | Niklas Hallqvist | |
1998-05-11 | We need a string.h with a NULL define to please libsa, weird | Niklas Hallqvist | |
1998-05-11 | strn?cmp defined in libsa, disable these here temporarily. We might want | Niklas Hallqvist | |
them later as they are probably faster, being hand-assembled. | |||
1998-05-11 | Do not use userland headers | Niklas Hallqvist | |
1998-05-11 | stand.h defines min, no need for it here | Niklas Hallqvist | |
1998-05-11 | Hmm this file was empty, got recent NetBSD version | Niklas Hallqvist | |
1998-05-11 | do not convert write faults into vm system read+write faults | Theo de Raadt | |
1998-05-11 | Don't print 'unknown media code' for tapes as we know what they are, they ↵ | Todd C. Miller | |
are just not disks!; from NetBSD (simonb) |