Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-04-02 | .Pp macros do not belong immiedately after .Sh section header lines | Aaron Campbell | |
1999-03-31 | nsphy/ukphy fit | Theo de Raadt | |
1999-03-23 | Add DOSMBR_SIGNATURE_OFF define, needed for last disklabel change | Todd C. Miller | |
1999-03-21 | Fix TSS fault handling. | Tobias Weingartner | |
1999-03-17 | sd3b too | Theo de Raadt | |
1999-03-16 | Reflect reality | Thorsten Lockert | |
1999-03-16 | K6-3 | Theo de Raadt | |
1999-03-11 | ne* fixups | Theo de Raadt | |
1999-03-11 | wb(4) fits on RAMDISK | Theo de Raadt | |
1999-03-11 | add wb | Jason Wright | |
1999-03-11 | fix more comma splices that involve misuse of conjunctive adverbs | Paul Janzen | |
1999-03-09 | add more 'cc' usage, actually overestimating gcc's smartness; also fix ↵ | Michael Shalayeff | |
currently unused bus macros. kids tested mother approved | |||
1999-03-09 | Add support for disabling the processor serial number on the P3. | Jason Downs | |
1999-03-08 | Add support for CPUID level 2. This is used to determine the L2 cache size | Jason Downs | |
on Intel processors; print out the correct CPU name and cache size at boot. Also clean up the feature flags, including PPro errata. | |||
1999-03-07 | disable isp, enable adw/mx/vr | Theo de Raadt | |
1999-03-05 | CS4232 hack goes away | Theo de Raadt | |
1999-03-04 | isapnp wss support | Theo de Raadt | |
1999-03-04 | pn* now fits... | Theo de Raadt | |
1999-02-28 | new box | kstailey | |
1999-02-28 | do not APMDEBUG ramdisk floppy, it is very noisy | Theo de Raadt | |
1999-02-28 | permit swap on wd0b and sd0b, for swapon | Theo de Raadt | |
1999-02-28 | DEBUG should not affect apm.c | Theo de Raadt | |
1999-02-26 | deal with uvm. Mostly name changes. | Artur Grabowski | |
1999-02-26 | change pmap_{de,}activate to take a struct proc *. | Artur Grabowski | |
XXX - This should be done to other archs, but since nothing (except uvm) uses it right now, the interface will be changed there when support for uvm is added. | |||
1999-02-26 | cnt.foo -> uvmexp.bar | Artur Grabowski | |
vm_fault -> uvm_fault | |||
1999-02-26 | some allocation changes, name changes, etc for uvm | Artur Grabowski | |
1999-02-26 | add kcopy (uvm) | Artur Grabowski | |
cnt.foo -> uvmexp.bar kmem allocation changes for uvm | |||
1999-02-26 | kmem allocation changes for uvm | Artur Grabowski | |
1999-02-26 | some uvm constants | Artur Grabowski | |
1999-02-26 | cnt.foo -> uvmexp.bar in uvm | Artur Grabowski | |
1999-02-26 | cnt.foo -> uvmexp.bar in uvm | Artur Grabowski | |
1999-02-26 | typedefs for {v,p}addr_t and {v,p}size_t needed by uvm. | Artur Grabowski | |
We should consider switching to those some day. | |||
1999-02-26 | some defines needed by uvm | Artur Grabowski | |
1999-02-25 | fix /boot arguments mapping. | Michael Shalayeff | |
now fully trust bootargv value passed from the /boot towards where in the physical memory they are located. adjust available memory accordingly. there is a mail coming into misc@ about this patch. | |||
1999-02-24 | pIII handling; testing by jdb@layer8.net | Theo de Raadt | |
1999-02-23 | Make ampwarn access conditional upon NAPM so kernels that do | Marco S Hyman | |
not define the apm device build again (sorry) | |||
1999-02-23 | apm battery status messages now suppressed until battery life | Marco S Hyman | |
falls below 'machdep.apmwarn' percent. This defaults to 10 percent | |||
1999-02-19 | This should be NISADMA, not NISA. | Artur Grabowski | |
1999-02-18 | add raid, some pseudo-device rearrange, hide local cruft | Michael Shalayeff | |
1999-02-17 | oops | Theo de Raadt | |
1999-02-17 | elf for freebsd; chris@dqc.org | Theo de Raadt | |
1999-02-15 | more definitions from apm 1.2 | Michael Shalayeff | |
1999-02-14 | inherit DEBUGFLAGS form Makefile.inc | Michael Shalayeff | |
1999-02-13 | update to -current | Michael Shalayeff | |
remove stuff i would avoid to use add recent stuff, and not recent stuff adjustments in ccd,vnd,bpf to accomodate above changes | |||
1999-02-12 | do not accept T_TRCTRAP DDB inside the osyscall stub; weingart | Theo de Raadt | |
1999-02-10 | branding support and freebsd elf | Theo de Raadt | |
1999-02-09 | $Log is ugly | Theo de Raadt | |
1999-02-08 | Fix cua device to not block on open. | Jim Rees | |
Turn off chip (and dtr) on interrupted open. | |||
1999-02-04 | Reflect reality | Niklas Hallqvist | |
1999-01-31 | Fix clobbers so that GENERIC may compile with egcs. | Marc Espie | |
Historically, the documentation of extended asm was lacking, namely you should NOT specify the same register as an input, and a clobber. If the register is clobbered, it should be specified as an output as well, e.g., by linking input and output through the "number" notation. (Beware of lvalues, some local variables needed...) In older versions, up-to egcs1.1.1, the compiler did not even warn about it, but it was liable to output bad code. Newer egcs are pickier and simply refuse to swallow such code. |