Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-16 | Introduce sti_rom_size() which will compute the size of a card's rom, and | Miod Vallat | |
use it instead of duplicating the same logic in 3 places. ok mickey@ | |||
2006-04-15 | make warning about missing HPT support DEBUG for now | Martin Reindl | |
ok mickey@ | |||
2006-04-09 | #ifdef lint wraps for va_start | Theo de Raadt | |
2006-04-05 | Enable an(4) on BE archs now that it works. | Kurt Miller | |
2006-04-01 | Revert previous commit, this causes sti1 probe to hang on some models. | Miod Vallat | |
2006-03-27 | regen | Michael Shalayeff | |
2006-03-27 | typo | Michael Shalayeff | |
2006-03-24 | hppa has CardBus and USB as well so add umsm(4). | Jonathan Gray | |
Pointed out by mickey. | |||
2006-03-19 | remove unused bdbtofsb(bn) macro | Martin Reindl | |
found by drahn@ | |||
2006-03-15 | Nuke dk_establish(), no longer used. | Miod Vallat | |
2006-03-15 | Correct checks against cd_ndevs - valid numbers are strictly inferior to | Miod Vallat | |
cd_ndevs. | |||
2006-03-13 | * Add "pcitag_t *pba_bridgetag" to pci_attach_args. This is set to | Brad Smith | |
NULL for root PCI busses. For busses behind a bridge, it points to a persistent copy of the bridge's pcitag_t. This can be very useful for machine-dependent PCI bus enumeration code. From NetBSD ok grange@ kettenis@ | |||
2006-03-12 | remove splimp. | Brad Smith | |
2006-03-04 | Typos grab bag of the month, eyeballed by jmc@ | Miod Vallat | |
2006-02-06 | typos from alexey dobriyan; | Jason McIntyre | |
2006-01-22 | b_cylin -> b_cylinder; no functional change. | Miod Vallat | |
2006-01-13 | Make size_t, ssize_t, intptr_t and uintptr_t consistent amongst our | Todd C. Miller | |
architectures. They are now defined as unsigned long, long, long and unsigned long respectively. | |||
2006-01-11 | hotplug(4) and hotplugd(8) here | Martin Reindl | |
2006-01-10 | The __CONCAT macro here collides with the one in cdefs.h pulled in via | Martin Reindl | |
errno.h. Don't include errno.h and export EFAULT therefore. looks good miod@ | |||
2006-01-09 | Disable an(4) on BE archs until it works. | Jonathan Gray | |
2006-01-08 | Expose struct sigcontext, struct sigstat and struct sigaltstack for XPG4.2 | Todd C. Miller | |
2006-01-06 | Don't redefine SIZE_MAX | Todd C. Miller | |
2006-01-06 | Adapt things to use __type_t instead of _BSD_TYPE_T_ | Todd C. Miller | |
Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable | |||
2006-01-06 | Merge machine/ansi.h and machine/types.h into machine/_types.h and | Todd C. Miller | |
rename the types using the __ protected namespace (e.g. __size_t). Idea from FreeBSD. | |||
2005-12-31 | Nuke unused cdev_wscons_init() macro. | Miod Vallat | |
2005-12-30 | Now that errno.h and sys/errno.h are separate header files there is no | Todd C. Miller | |
need to use the -Derrno=errno workaround added when __errno() was introduced. OK deraadt@ | |||
2005-12-27 | Remove unused sw_nblks field of struct swdevt. Then, remove swapconf() | Miod Vallat | |
which duplicates work done by uvm_swap_init(). | |||
2005-12-25 | KERN_RESOURCE_SHORTAGE -> ENOMEM | Miod Vallat | |
2005-12-22 | Postpone the hil console detection logic to the first detection of a keyboard. | Miod Vallat | |
On hp300, hil would claim console against dnkbd if no dnkbd was found at the time the loop is probed, even if the loop is empty. Because of this, plugging dnkbd later would not select it as console keyboard, which is really annoying on kernels without wsmux, such as hp300 RAMDISK. Now the first keyboard plugged will become the console keyboard, whatever its type. No functional change on hppa, since the console path gives a definite console device setting. | |||
2005-12-22 | 'spoofonly' does not mean what I thought it meant. The whole point is | Kenneth R Westerback | |
to read non-OpenBSD label information like MBRs and populate ('spoof') the OpenBSD disk label appropriately. So avoiding an I/O when doing 'spoofonly' is to miss the whole point. Backout all Sept. 26 and subsequent changes to disksubr.c files. The original CD problem with I/O errors on blank media will be addressed another way. Should fix the ext3 vs amd64 problems discussed on misc@. Thanks to steven@ for finally putting it terms that I understood. ok deraadt@ | |||
2005-12-22 | Bad commit, breaks hppa64. Prompted by deraadt@ | Marco Peereboom | |
2005-12-21 | Add MACHINE_STACK_ALIGN define. | Marco Peereboom | |
2005-12-19 | Fix hppa ldcw alignment issue. | Marco Peereboom | |
Help deraadt, tedu, kettenis Ok tedu, kettenis | |||
2005-12-14 | make va_arg() map to nothing; ok millert | Theo de Raadt | |
2005-12-14 | convert _FOO_SOURCE -> __FOO_VISIBLE in machine. OK deraadt@ | Todd C. Miller | |
2005-12-14 | Make clock_t consistent across platforms as a 32 bit int. OK deraadt@ | Todd C. Miller | |
2005-12-13 | remove ad clause that got copied from older versions of the files; pto by jsg@ | Michael Shalayeff | |
2005-12-13 | nuke unused BTOPKERNBASE define | Martin Reindl | |
pointed out by miod@ | |||
2005-12-13 | First step in include files overhaul. Use __FOO_VISIBLE (as defined | Todd C. Miller | |
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace pollution issues, including the byte order defines. OK deraadt@ | |||
2005-12-12 | Only include PROCFS on kernels which have either COMPAT_LINUX or COMPAT_SVR4, | Miod Vallat | |
otherwise it's just a waste of bytes. ok deraadt@ mickey@ | |||
2005-12-12 | Nuke leftover references to procfs_mem.h. | Miod Vallat | |
2005-12-11 | Replace procfs_domem() with a similar interface, process_domem(), which lives | Miod Vallat | |
out of procfs and gets a ptrace request PT_{READ,WRITE}_{I,D} as argument; also procfs_checkioperm() becomes process_checkioperm(). From art@ some time ago; ok kettenis@ pedro@ | |||
2005-12-06 | Remove fdescfs | Pedro Martelletto | |
2005-11-28 | use atop(), remove last traces of Mach macros from hppa and hppa64 | Martin Reindl | |
2005-11-24 | add lint-specific hacks. at the same time, clean out a lot of ancient | Theo de Raadt | |
cruft for old compilers and environments. there may be a 2nd round of polishing after this; ok miod and others | |||
2005-10-27 | em kind of works now (not under heavy nfs load); ok brad | Theo de Raadt | |
2005-10-26 | no more hppa_round_page() and hppa_trunc_page() macros | Martin Reindl | |
ok mickey@ | |||
2005-10-12 | regen | Michael Shalayeff | |
2005-10-12 | add few other ancient cpu types we have not seen yet | Michael Shalayeff | |
2005-09-27 | Don't try to read the DOS label from the device if spoofonly is 1. | Kenneth R Westerback | |
This changes the architectures which use code identical to the amd64 disksubr.c. macppc seems different so it will be separate. The remaining archs don't try to read a DOS label. ok deraadt@ |