Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-13 | for the install: target, use cmp as a rough attempt for avoiding repeated | Theo de Raadt | |
make install from Simon Nicolussi ok jsing tedu | |||
2015-01-11 | switch prototype warnings to implicit-declaration warnings. | Ted Unangst | |
This should catch all the same bad cases, but be a little less aggravating in circumstances where a prototype isn't necessary ok deraadt | |||
2015-01-03 | add new driver uslhcom(4) USB HID based UART. | uaa | |
2014-12-11 | dragonflybsd has added a urio driver. conservation of urios requires | Ted Unangst | |
that we delete ours, which isn't actually useful. ok mpi sthen | |||
2014-12-10 | retire shutdown hooks; ok deraadt, krw | Mike Belopuhov | |
2014-12-04 | Enable umcs(4) where moscom(4) is present. | Martin Pieuchot | |
2014-11-16 | Replace a plethora of historical protection options with just | Theo de Raadt | |
PROT_NONE, PROT_READ, PROT_WRITE, and PROT_EXEC from mman.h. PROT_MASK is introduced as the one true way of extracting those bits. Remove UVM_ADV_* wrapper, using the standard names. ok doug guenther kettenis | |||
2014-10-18 | Remove even more unnecessary `needs-flag' attributes from config machinery, | Miod Vallat | |
as well as useless include of the generated flag files. | |||
2014-10-10 | Significant unification of RAMDISK* config files, making them diffable. | Theo de Raadt | |
This makes it easier to remove components not required to do an install, and subsequently add other desireable components ... In snapshots (in various forks) for about a week. Do some upgrades and installs, please. | |||
2014-10-09 | mechanical translation of dev_lkm_dummy() to dev_notdef() | Ted Unangst | |
2014-10-09 | remove LKM devices | Ted Unangst | |
2014-10-04 | Switch the kernel configs over to using -Wframe-larger-than= instead of | Brad Smith | |
-Wstack-larger-than-. This is what modern GCC supports as well as LLVM. ok miod@ | |||
2014-09-20 | Use config_suspend_all(9). | Mark Kettenis | |
ok mpi@, uebayasi@, dlg@ | |||
2014-08-22 | pseudo-device crypto was accidentally left for some architectures. | Theo de Raadt | |
2014-08-21 | Kill the remaining <netinet/in_systm.h> inclusion! | Martin Pieuchot | |
2014-08-20 | unlink crypto(4) pseudo device from the architecture dependant character | Mike Belopuhov | |
device tables and kernel config files. ok deraadt | |||
2014-07-21 | boot(9): Reduce annoying style diffs | Masao Uebayashi | |
- Always use either: ((x & RB_XXX) != 0) or ((x & RB_XXX) == 0) in boolean context (mostly if (x), or x ? y : z) - prom_halt() in alpha is confirmed to take int as boolean Converted by coccinelle. No functional change intended. | |||
2014-07-17 | Turn the console code into regular cons_decl() ones, to better fit libsa | Miod Vallat | |
getchar/putchar and be able to link again. Crank minor version. | |||
2014-07-14 | More comment cleanup in boot(). | Masao Uebayashi | |
2014-07-13 | boot(9): Cosmetic changes to improve diff'ability. | Masao Uebayashi | |
2014-07-13 | Cosmetic changes to reduce diffs. | Masao Uebayashi | |
2014-07-13 | fix even more trailing tabs | Jasper Lievisse Adriaanse | |
2014-07-13 | move putchar() into libsa | Jasper Lievisse Adriaanse | |
"sure" miod@ | |||
2014-07-12 | "Dr. Jones. Again we see there is nothing you can possess which I cannot | Ted Unangst | |
take away." remove uyap. no effect except on hppa where it was strangely enabled. | |||
2014-07-12 | move getchar() into libsa where applicable | Jasper Lievisse Adriaanse | |
ok miod@ | |||
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst | |
after discussions with beck deraadt kettenis. | |||
2014-07-11 | remove bthub remnants | Ted Unangst | |
2014-07-11 | "It's not the years, honey; it's the mileage." | Ted Unangst | |
bluetooth support doesn't work and isn't going anywhere. the current design is a dead end, and should not be the basis for any future support. general consensus says to whack it so as to not mislead the unwary. | |||
2014-07-11 | Convert bus_dmamem_map(9) to km_alloc(9) in order to make it fail and | Martin Pieuchot | |
not sleep if the allocator cannot obtain a lock when BUS_DMA_NOWAIT is specified. idea and inputs from kettenis@, ok miod@ | |||
2014-07-11 | It's init as a process that's special, not init's original thread. | Philip Guenther | |
Remember initprocess instead of initproc. ok matthew@ blambert@ | |||
2014-07-10 | Set cold to 1 before executing the DVACT_POWERDOWN handlers when halting or | Martin Pieuchot | |
rebooting a machine, like it is done in the hibernate case. At least some USB host controller drivers rely on this to busy way instead of sleeping. Avoid a panic on macppc with an uhci(4) cardbus plugged in. ok deraadt@, uebayashi@ | |||
2014-07-10 | boot(): Remove comments about RB_TIMEBAD to reduce diffs | Masao Uebayashi | |
RB_TIMEBAD is documented well enough that the comment is not needed. sparc64 does slightly different and its comment is left with XXX. OK deraadt@ miod@ | |||
2014-07-10 | boot(): Unify declarations | Masao Uebayashi | |
OK deraadt@ | |||
2014-05-31 | Revert previous diff setting cold to 1 on shutdown because it breaks machine | Martin Pieuchot | |
with softraid(4) disks. softraid(4) is the last real consumer of the doshutdownhooks(9) API and it is not trivial to convert its hook to a DVACT_POWERDOWN handler since the latter does not allow to sleep. | |||
2014-05-30 | Set cold to 1 before executing the DVACT_POWERDOWN handlers when halting or | Martin Pieuchot | |
rebooting a machine, like it is done in the hibernate case. At least some USB host controller drivers rely on this to busy way instead of sleeping. Avoid a panic on macppc with an uhci(4) cardbus plugged in. ok deraadt@, uebayashi@ | |||
2014-05-08 | Format string fixes and removal of -Wno-format for landisk kernels | Miod Vallat | |
2014-04-14 | Fewer <uvm/uvm.h> | Martin Pieuchot | |
2014-04-07 | Enable upd(4) on archs where uhidev(4) is present, requested by mpi@. | andre | |
2014-04-07 | Add axen(4) wherever axe(4) is. | Brad Smith | |
ok mpi@ yuo@ | |||
2014-03-29 | It's been a quarter century: we can assume volatile is present with that name. | Philip Guenther | |
ok dlg@ mpi@ deraadt@ | |||
2014-03-13 | get rid of the assumption that the head of the alldevs list is the | David Gwynne | |
"mainbus" device. this breaks when mpath is enabled because it attaches before mainbus and therefore takes the head position. have autoconf provide device_mainbus() which looks up mainbus_cd, and use that instead. discussed with deraadt who just wants mpath stuff to move forward despite there being many ways to shine this particular turd. | |||
2013-12-28 | crank the version | Theo de Raadt | |
2013-12-08 | reflect reality, mark as NOOBJ | Marc Espie | |
"sure" deraadt@ | |||
2013-11-15 | Added dev/usb/if_ugl.c, a driver for Genesys Logic GL620USB-A | sasano | |
USB host-to-host link cable. This driver is derived from upl(4). | |||
2013-11-05 | Add a stub for the new MD hook needed to handle ACPI Power Resources. | Martin Pieuchot | |
ok kettenis@ | |||
2013-11-04 | remove iop(4) driver. it is entirely unmaintained and supports something | Theo de Raadt | |
which basically doesn't exist at all. reminded about it by brad | |||
2013-11-04 | remove iop(4) driver. it is entirely unmaintained and supports something | Theo de Raadt | |
which basically doesn't exist at all. reminded about it by brad | |||
2013-10-19 | Use daddr_t * instead of int * for the partoffp parameter to | Kenneth R Westerback | |
readdoslabel(). Ditto all the MD variables whose addresses are passed to readdoslabel() via partoffp. Fix some 512-byte block vs disk sector confusion in hppa and sgi. All the DL_GETxxxxx() defines return disk sector values. All DL_SETxxxx() take disk sector values. These changes should be no-ops until a drive using non-512-byte-sectors is encountered. ok deraadt@ | |||
2013-10-15 | Rewrite the awk script that generates the data for option DDB_STRUCT: | Philip Guenther | |
- switch to perl for better data structures and (thus) speed - fix a couple glitches in the interpretation of the stabs output - compress the strings by putting them in one big array and overlaying suffixes - all sizes and offsets are <64k, so use u_short for them This results in ~60% reduction in the resulting text size and it now takes less than a second to create on fast platforms. ok miod@ | |||
2013-09-28 | In boot(), do not iterate over alldevs if it's empty (i.e. halting from ddb | Miod Vallat | |
with ddb entered early with boot -d or from UKC). |