summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
2003-11-27This var is volatile. gcc3 complains if the CV qualifiers don't match.Marc Espie
ok toby, mickey
2003-11-26after some discussion with nick@, note that `hd*' syntax makes moreJason McIntyre
sense when specifying a boot device than does `wd*' or `sd*', and replace examples with it; in line with what nick has already done to the faq; ok nick@ mickey@ weingart@
2003-11-26The geodesc works great for SC1201 as well. ok markus@Kevin Lo
2003-11-24have to apm_set_ver() before the values calculated get used; from ↵Michael Shalayeff
nedko@users.sourceforge.net
2003-11-22Unbreak compiling with DEBUG.Alexander Yurchenko
Diff from mickey@, ok weingart@
2003-11-20Add -fno-builtin-print -fno-builtin-log to i386/sparc/sparc64/hppa.Marc Espie
No confirmed report of `this work' for other arches yet...
2003-11-17Be sure to not use the cpuid instruction on processors which do not support it;Miod Vallat
repairs 80386 support. Spotted and tested nick@
2003-11-16convert __attribute__((__packed__)) to __packed so that parsers unawareAnil Madhavapeddy
of gcc extensions have more of a chance. ok mcbride@, no objections from millert@, deraadt@
2003-11-15recognize AMD Opteron, Athlon64 and Athlon64FX as 686-class CPUHenning Brauer
diff from Chris Timmons <ChrisT@computar.ca> and jaimie@camerarepair.com with minor adjustments by me ok millert@
2003-11-15diff from andreas@:Henning Brauer
use the cpuid instruction for processor identification where available. tested by grange@, tedu@ and me
2003-11-14correct detects Transmeta cpu.Kevin Lo
ok mickey@
2003-11-08typos from Jonathon Gray;Jason McIntyre
2003-11-08Remove compacting garbage collector. Fixes PR #3528.Thomas Nordin
Tested by henning@ and frisco@blackant.ne. ok mickey@, niklas@, and weingart@
2003-11-07update the ref to fips; from jared yanovichMichael Shalayeff
2003-11-06move netisr definition into md code to allow arch provide suitable ↵Michael Shalayeff
allocation; tested on most archs
2003-11-03spelling fixes (in the comments)David Krause
2003-11-03remove support for non-existent scd and pcd drivers. ok deraadt millertTed Unangst
2003-10-31Enable wi@usb, otherwise this will never get tested... deraadt@Dale Rahn
2003-10-29Avoid another malloc in the VIA AES stuff: move the operation stuffJason Wright
into the softc allocated at attach time
2003-10-29don't allocate two buffers when one will do (VIA's AES stuff can have src==dst)Jason Wright
2003-10-28guard cpu register functions from userland, otherwise they appear whenAnil Madhavapeddy
including stuff like <sys/sysctl.h> deraadt@ ok
2003-10-26Add line for wi@usb, currently commented out, for development and testing only.Dale Rahn
2003-10-24No need to have several implementations of {read,write}_eflags(),Alexander Yurchenko
put it to cpufunc.h. ok weingart@ tedu@
2003-10-23- delay reading the disklabel for floppies until after we're sure it'sFederico G. Schwindt
the boot device. this fixes a delay (sometimes very long) if the bios correctly reports a floppy but it's unplugged. - bump version. original idea from mdw@, tested by nick@, toby@ ok.
2003-10-15spacesTheo de Raadt
2003-10-15typo in comment, ok jason@David Krause
2003-10-14Ok, now that the via c3 crypto stuff is in the tree, merge the last bit ofJason Wright
my cleanups before starting "real work".
2003-10-07remove extra \nMarkus Friedl
2003-10-05do not panic if microtime does not work to measure rng performance; from ↵Michael Shalayeff
andrisp@hipo.lv
2003-10-04- document that boot will by default try to load /bsd, /obsd then /bsd.old.Jason McIntyre
- indent examples, and put descriptions before rather than after them. ok mickey@
2003-10-04(boot): device: filename -> device:filenameJason McIntyre
nice CAVEAT, BTW.
2003-10-03Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need forMiod Vallat
separate tty registering is gone now that sparc has switched to wscons, and this makes the code less error-prone. Also, remove tests for ttymalloc() failure, since it uses M_WAITOK. ok millert@ deraadt@, tested by various people as well besides me...
2003-09-29to set smth in the register one has to write into it and not just read once ↵Michael Shalayeff
more; fround by art@
2003-09-26better mtd comment; from form@Michael Shalayeff
2003-09-23Replace select backends with poll backends. selscan() and pollscan()Todd C. Miller
now call the poll backend. With this change we implement greater poll(2) functionality instead of emulating it via the select backend. Adapted from NetBSD and including some changes from FreeBSD. Tested by many, deraadt@ OK
2003-09-20move the checks after we fixed the hd info.Federico G. Schwindt
from Thorsten Glaser <tg-v2003 at netcologne dot de> via toby@.
2003-09-19- some bios return a valid geometry for inexistent hd's so beforeFederico G. Schwindt
getting the geometry check the number of attached drives from the bios area at 40:75. - bump version. from toby@. we want people to test this, specially those with ghost drives showing up.
2003-09-19add debug info around #41; toby@ ok.Federico G. Schwindt
2003-09-18- move checks earlier to catch inexistent devices before testing for edd.Federico G. Schwindt
- bump version. toby@ ok.
2003-09-18- pass the correct device to bios_getdisklabel().Federico G. Schwindt
- don't blindly return but check whether bios_getdisklabel() failed and act according. this fixes (at some extent) booting from a floppy if it wasn't inserted during floppyprobe(). toby@ ok.
2003-09-16document extension support bitmap definition; requested by deraadt@.Federico G. Schwindt
toby@ ok.
2003-09-11permit ramdisks to buildTheo de Raadt
2003-09-11support new via c3 AES instruction; written by jasonTheo de Raadt
2003-09-11handle case where bios EDD support only supports a subset; from fgsch,Theo de Raadt
ok toby, and now tested for lots of machines
2003-09-08match size of fpreg w/ the save87 structs as figured in discussion w/ jason ↵Michael Shalayeff
two months ago and the rediscovered by grange@ and then probably by some more other people in mongolia who had no inet to report it unfortunately; this also fixes problem w/ catching sigsegv after recent bcopy(,,sizeof) fixes; deraadt@ ok
2003-09-07Fix system hangs some i386 machines experienced when booting with theKenneth R Westerback
'-a' option. Closes PR #2122 and #3437. From Thorsten Glaser. ok deraadt@ henning@ weingart@.
2003-09-04correct sizeof for bzero/bcopyAnil Madhavapeddy
ok tedu krw fgsch deraadt
2003-09-02indent audio comment properlyDavid Krause
ok deraadt@
2003-09-02Revert the last change since both Pentium 4 and Mobile Pentium 4Alexander Yurchenko
can be with model = 2. Better cpu ident will be after 3.4. Problem noted by Wouter Clarie <rimshot@pandora.be>. ok deraadt@
2003-09-02zap more driversTheo de Raadt