summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
1999-04-02.Pp macros do not belong immiedately after .Sh section header linesAaron Campbell
1999-03-31nsphy/ukphy fitTheo de Raadt
1999-03-23Add DOSMBR_SIGNATURE_OFF define, needed for last disklabel changeTodd C. Miller
1999-03-21Fix TSS fault handling.Tobias Weingartner
1999-03-17sd3b tooTheo de Raadt
1999-03-16Reflect realityThorsten Lockert
1999-03-16K6-3Theo de Raadt
1999-03-11ne* fixupsTheo de Raadt
1999-03-11wb(4) fits on RAMDISKTheo de Raadt
1999-03-11add wbJason Wright
1999-03-11fix more comma splices that involve misuse of conjunctive adverbsPaul Janzen
1999-03-09add more 'cc' usage, actually overestimating gcc's smartness; also fix ↵Michael Shalayeff
currently unused bus macros. kids tested mother approved
1999-03-09Add support for disabling the processor serial number on the P3.Jason Downs
1999-03-08Add support for CPUID level 2. This is used to determine the L2 cache sizeJason 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-07disable isp, enable adw/mx/vrTheo de Raadt
1999-03-05CS4232 hack goes awayTheo de Raadt
1999-03-04isapnp wss supportTheo de Raadt
1999-03-04pn* now fits...Theo de Raadt
1999-02-28new boxkstailey
1999-02-28do not APMDEBUG ramdisk floppy, it is very noisyTheo de Raadt
1999-02-28permit swap on wd0b and sd0b, for swaponTheo de Raadt
1999-02-28DEBUG should not affect apm.cTheo de Raadt
1999-02-26deal with uvm. Mostly name changes.Artur Grabowski
1999-02-26change 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-26cnt.foo -> uvmexp.barArtur Grabowski
vm_fault -> uvm_fault
1999-02-26some allocation changes, name changes, etc for uvmArtur Grabowski
1999-02-26add kcopy (uvm)Artur Grabowski
cnt.foo -> uvmexp.bar kmem allocation changes for uvm
1999-02-26kmem allocation changes for uvmArtur Grabowski
1999-02-26some uvm constantsArtur Grabowski
1999-02-26cnt.foo -> uvmexp.bar in uvmArtur Grabowski
1999-02-26cnt.foo -> uvmexp.bar in uvmArtur Grabowski
1999-02-26typedefs 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-26some defines needed by uvmArtur Grabowski
1999-02-25fix /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-24pIII handling; testing by jdb@layer8.netTheo de Raadt
1999-02-23Make ampwarn access conditional upon NAPM so kernels that doMarco S Hyman
not define the apm device build again (sorry)
1999-02-23apm battery status messages now suppressed until battery lifeMarco S Hyman
falls below 'machdep.apmwarn' percent. This defaults to 10 percent
1999-02-19This should be NISADMA, not NISA.Artur Grabowski
1999-02-18add raid, some pseudo-device rearrange, hide local cruftMichael Shalayeff
1999-02-17oopsTheo de Raadt
1999-02-17elf for freebsd; chris@dqc.orgTheo de Raadt
1999-02-15more definitions from apm 1.2Michael Shalayeff
1999-02-14inherit DEBUGFLAGS form Makefile.incMichael Shalayeff
1999-02-13update to -currentMichael 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-12do not accept T_TRCTRAP DDB inside the osyscall stub; weingartTheo de Raadt
1999-02-10branding support and freebsd elfTheo de Raadt
1999-02-09$Log is uglyTheo de Raadt
1999-02-08Fix cua device to not block on open.Jim Rees
Turn off chip (and dtr) on interrupted open.
1999-02-04Reflect realityNiklas Hallqvist
1999-01-31Fix 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.