summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
2005-02-15Add commented entries for Ralink RT2500 driver (ral)Damien Bergamini
2005-02-10Nasty, fix tedu's test case. This needs to beTobias Weingartner
looked at after release again. Lots of testing. Partial ok from drah@, hshoexer@, others.
2005-01-14We're not really ready to enable ubt(4), from theo.Alexander Yurchenko
2005-01-14Enable ubt(4) on i386.Alexander Yurchenko
2005-01-14ubt(4): USB Bluetooth driver, commented out in all kernel configAlexander Yurchenko
files for now. Adopted from FreeBSD for our netbt stack. Help in testing by many, ok markus@
2005-01-14cardbus re(4) support (Realtek 8169) heavily based on if_rl.Peter Valchev
still work in progress but it works (this is committed through it), some PHY timeout issues to resolve
2005-01-13HTML page does not seem to exist anymore so point to the PDF for now.Brad Smith
2005-01-12Intel 82443BX DRAM address errata seems to be fixed in the latest revisionsAlexander Yurchenko
of the chipset. Inspired from netbsd pr by scottr@NetBSD.org. ok theo
2005-01-09typo in comment; ok many peopleJason McIntyre
from freebsd kern/75923;
2005-01-08replace magic numbers w/ a proper sizeof; from peter@Michael Shalayeff
2005-01-07rev 1.26Brad Smith
The VIA Technologies VT82C686A SMBus Controller claims to be a PCI/ISA bridge, ignore it. From NetBSD ok deraadt@
2005-01-07Fix profiled kernel builds on i386 by moving splraise/splx code into macrosChristopher Pascoe
permitting non-recursive reuse in mcount. Should be a no-op for normal builds.
2005-01-06few more devices that fitTheo de Raadt
2005-01-06turn off GPL_MATH_EMULATE by default (fully BSD licensed floppies, neat eh); ↵Theo de Raadt
miod ok
2005-01-06use wsmux more; miod okTheo de Raadt
2005-01-04silence real gcc 3.3.5Marc Espie
okay mickey@.
2005-01-04SET_PC_REGS, arches tested between me and miod.Marc Espie
2005-01-03wsmux lets usb keyboards work hereTheo de Raadt
2005-01-01Add more debugging printf #ifdef DEBUG. This was useful when trackingTodd C. Miller
down the bootdev issue. OK deraadt@
2005-01-01Move the declaration of bootdev from autoconf.c to locore.s. gccTodd C. Miller
3.3.5 was placing bootdev into bss and its value was getting zeroed when bss is cleared. Apparently we lucked out before and gcc 2.9.5 put it in .data; now it is explicit. OK deraadt@
2004-12-31typoTheo de Raadt
2004-12-31Enable Realtek RTL8180 driver (rtw) to get more testing feedback.Jonathan Gray
Can people with these devices please mail me with the name of the device and a dmesg. ok deraadt@
2004-12-29fix a few more locators with ? that snuck in; mickey okTheo de Raadt
2004-12-29Add commented entries for David Young's Realtek 8180 driver (rtw).Jonathan Gray
2004-12-25Use list and queue macros where applicable to make the code easier to read;Miod Vallat
no functional change.
2004-12-25much space has been regained because of ramdisk fitting exercises inTheo de Raadt
MI code. this has led to the i386 "laptop" floppy having a lot of extra space. heck, let's add minimum usb support! umass, ukbd, aue, url, and wi at usb should now work here.
2004-12-24{e,}intr{cnt,names} bye-bye.Miod Vallat
2004-12-24Rewrite intlock/intunlock not to pass around interrupt frame directlyPeter Valchev
without copying which is against C conventions and broke GENERIC.MP with a gcc3 optimization From niklas, tested by many
2004-12-23make com[123] work for console on i386, but allow override with CONADDR/CONUNITMarkus Friedl
ok mickey, deraadt
2004-12-23Allow an i386 MP kernel to build without pcibios. miod@ okAaron Campbell
-#if NPCIBIOS > 0 +#if (NPCIBIOS > 0) || (NIOAPIC > 0)
2004-12-20vge(4) in bsd.rd, only CD for now; ok deraadtPeter Valchev
2004-12-19single comment in GENERIC replaces a file that gets out of date; discussed ↵Theo de Raadt
by many
2004-12-19disable uyap by default, because it is that rareTheo de Raadt
2004-12-17Support for the eap MIDI UART from NetBSD.Jonathan Gray
Tested by serveral people. ok millert@, mickey@
2004-12-14fix a comment.Hans-Joerg Hoexer
ok deraatd tdeval
2004-12-08add ohci and ehci at cardbus to amd64, i386 and macppc. amd64 remainsDavid Gwynne
disabled for now. from deraadt@
2004-12-06set granularity for data segment used for struct cpu_info to bytes.Hans-Joerg Hoexer
ok mickey deraadt tedu niklas
2004-12-06Use uvm_grow() to account for stack growth, rather than home-grown codeMiod Vallat
or nothing. Inspired by a similar recent change in NetBSD.
2004-12-04add /etc/dhcpd.conf to FILES;Jason McIntyre
2004-12-02We do not support 2MB machines, so don't bother taking them into accountMiod Vallat
in allocsys().
2004-12-01VIA VT612x PCI Gigabit Ethernet adapter support, ok deraadtPeter Valchev
from FreeBSD
2004-11-29plug memory leaks on errorPatrick Latifi
ok canacar markus millert
2004-11-28MAXSLP is not really an MD-configurable define so move it to param.h; miod@ ↵Michael Shalayeff
testing
2004-11-26Kill __HAVE_EVCOUNT, now that all architectures provide them.Miod Vallat
2004-11-25crank ramdisk filesystem slightly to cope with firmwares inside the filesystemTheo de Raadt
2004-11-23Use pci_matchbyid() for matching crazy VIA power management controllersAlexander Yurchenko
and add a few ones. ``valiay'' mickey@
2004-11-19More aggressive strip flags for non debug kernels; this is a noop on someMiod Vallat
architectures, but saves a few dozen KB on alpha and ppc. ok deraadt@
2004-11-17proper autoconf attachments; grange@ testing; markus@ okMichael Shalayeff
2004-11-17atu(4) on by default, since it is now smallerTheo de Raadt
2004-11-11no need to lock access for readingjoshua stein