summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
AgeCommit message (Collapse)Author
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-12#atuTheo de Raadt
2004-11-10Remove __cplusplus crud.Alexander Yurchenko
2004-11-09Do not map empty mbufs (m_len == 0) in bus_dmamap_load_mbuf() as these mappingsClaudio Jeker
may disturb the dma as seen in ipw(4). Emtpy mbufs are at the beginning of the mbuf chain and are as example a "side-effect" of a previous m_adj() call. OK miod@ mickey@ jason@ markus@
2004-11-03Enable pcscp; from Martin Reindl <mreindl at catai.org>Xavier Santolaria
ok miod@.
2004-11-02Remove __HAVE_NWSCONS and related remnants of pre-wscons days; no functionalMiod Vallat
change.
2004-10-30vaddr_t casts for vtophys, works on amd64, enabled in GENERICCan Erkin Acar
patch submitted and tested by Steffen Schütz, schuetz.steffen at melle de ok tedu@
2004-10-28SIGFPE signal codes.Mark Kettenis
ok deraadt@
2004-10-23configure() -> cpu_configure()Michael Coulter
ok grange@
2004-10-22Remove option CPU hack, no changes in .o files.Alexander Yurchenko
ok deraadt@
2004-10-13readd commented out isadma entryBrad Smith
2004-10-11strip out quite a few of the ISA devicesBrad Smith
with input from and ok miod@
2004-10-09size works now on cross-size .o filesMichael Shalayeff
2004-10-08Move dev/cons.c to MI conf/files.Alexander Yurchenko
ok miod@
2004-10-05Get prototypes through cons_decl(), so that they are always right.Miod Vallat
2004-10-05Port of NetBSD's udav driver for Davicom USB DM960 based Ethernet.Jonathan Gray
Thanks to Mark Uemura for donating several of these adapters. Tested by and ok deraadt@
2004-09-25Remove aapic, ok deraadt@Alexander Yurchenko
2004-09-21$OpenBSD$ tagAlexander Yurchenko
2004-09-20addres -> addressMiod Vallat
2004-09-16Rely upon __LP64__ to choose {U,}LONG_{MIN,MAX} values, rather than aMiod Vallat
homegrown define. ok deraadt@
2004-09-16spacingTheo de Raadt
2004-09-16cleanup deafult locators (blah ?); please check that your most hated ↵Michael Shalayeff
architecture is still fluffy (;
2004-09-14eap tested to work; tybollt@solace.mh.seTheo de Raadt
2004-09-06rl fits on install media againTheo de Raadt
2004-08-27Support USB keyboards on install where USB support is enabled. ok deraadt@Dale Rahn
2004-08-24Sync with i386 cdboot.8:Tom Cosgrove
Better description of the path to bsd.rd, to avoid having to update it every release. Also note that cdboot's ls command doesn't work on ISO-9660 filesystems.
2004-08-24Correctly document the order in which cdboot looks for kernels.Tom Cosgrove
2004-08-24Have cdboot look for /3.6/amd64/bsd.rd first.Tom Cosgrove
"go for it" deraadt@
2004-08-24Have cdbr look for cdboot at /3.6/amd64/cdboot as well as at /cdboot.Tom Cosgrove
"go for it" deraadt@
2004-08-21Hook cdbr and cdboot into the build.Tom Cosgrove
2004-08-21Enter cdboot, a CD-specific second-stage bootrap. Based on the i386Tom Cosgrove
cdboot that Toby and I put together at the hackathon. "go for it" deraadt@
2004-08-21Enter cdbr, an El Torito no-emulation CD boot sector that fitsTom Cosgrove
comfortably in a single CD sector of 2,048. Based on the OpenBSD/i386 code that Toby and I put together at the hackathon, which was in turn based on the FreeBSD equivalent by John Baldwin, jhb (at) FreeBSD (dot) org. "go for it" deraadt@
2004-08-20Enable com@puc now that it works. OK deraadt@ miod@ henning@.Todd C. Miller
lpt@puc is still disabled until it gets tested.
2004-08-18Calculate time_t correctly from (day, month, year): 1/1/70 is 0, not 1,Tom Cosgrove
as recently fixed on i386. requested by, and ok, deraadt@
2004-08-14Add isa vga to amd64 install media kernels. This makes it possible toKenneth R Westerback
use a normal console to install on systems, such as my Tyan S2885, which find the in-built vga in isa land rather than pci land. Completes earlier work by Tom Cosgrove on GENERIC. ok deraadt@
2004-08-11In dkcsumattach() avoid modifying bootdev until we are done matching.Todd C. Miller
Also deal with mixed scsi/ide/whatever setups. Based on a diff from Fred de Jong. OK deraadt@ and tested by several people.
2004-08-06rename sparc kill_user_windows() to pmap_unuse_final(). provide empty stubsTheo de Raadt
on all other architectures. remove last architecture dependent #ifdef from uvm code.
2004-08-06provide md USPACE_ALIGN zero on all but mips; deradat@ pefo@ okMichael Shalayeff
2004-08-04There are so many reasons why a printf in an ipi is a very bad idea.Artur Grabowski
Especially since it doesn't add anything but spam during reboot.
2004-08-03Hehehe. Remove an #if 0 function that was used in the early days to debugArtur Grabowski
why vga scrolling wasn't working by sending beeps on the speaker.
2004-08-03include a few more ethernet driversTheo de Raadt
2004-08-02Heuristic approach to 'trace' in ddb which works without frame pointers.Andreas Gunnarsson
Not perfect yet but better than nothing. art@ ok
2004-08-02Remove a completly unnecessary compare that sneaked in whileArtur Grabowski
I was debugging some completly other problem in this function. cmpxchgq already does an equivalent compare. Discussed on icb a few days ago.
2004-08-01why was cdce not added here? Come on.Theo de Raadt
2004-07-24Use '=' not '==' with test. While ksh accepts '==' as a synomym for '=',Todd C. Miller
it is not valid in sh.
2004-07-22Change a printf+Debugger pair into a panic.Artur Grabowski
Debugger calls in the middle of the code are evil because they don't respect the ddb.panic sysctl and might leave critical machines hung instead of quickly rebooting them. requested by tedu@
2004-07-22Use mutex instead of SIMPLELOCK for locking the tlb shootdown queuesArtur Grabowski
and related structures. tedu@ ok
2004-07-22mutex instead of SIMPLELOCK for mp ddb.Artur Grabowski
"reads good" niklas@ "looks good" andreas@ "works" tedu@
2004-07-22Fix access to direct mapped memory through /dev/kmem.Artur Grabowski
2004-07-20MD mutex implementation on amd64.Artur Grabowski