Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-10 | armish handled some early-gen arm machines, which required tons of | Theo de Raadt | |
workarounds. Some of them will soon stand in the way of armv7. Off to the attic you go. | |||
2016-08-08 | Move the cpu_setup() call to the end of initarm(). On Cortex-A53 processors | Mark Kettenis | |
atomic instructions don't work unless the data cache is enabled. This happens in cpu_setup(), but that gets currently called from cpu_startup() which runs after a number of kernel subsystems have been initialized. Since some of these subsystems use locks, which need atomic instructions, we fault on Cortex-A53. Since at the end of initarm() we're done setting up the pmap and initializing other low-level sense, calling cpu_setup() here makes much more sense. Remove setting up proc0paddr as well from cpu_startup(), since that already happens in initarm(). Tested on zaurus by deraadt@. ok jsg@, patrick@ | |||
2016-07-30 | Prep for relro: make sure it's off for any non-PIE stand/ program | Philip Guenther | |
ok millert@ kettenis@ | |||
2016-06-28 | enable ure(4) where we already have url(4) | Jonathan Matthew | |
2016-06-08 | remove obsolete raid from namtoblk tables. from Artturi Alm | Ted Unangst | |
2016-05-31 | fix arch/mach confusion in make tags. from frantisek holop | Ted Unangst | |
2016-05-02 | Rework mainbus and implement simplebus to be able to span a tree-like | Patrick Wildt | |
topology based on device tree information. Introduce a common attach args structure to be used for all fdt-capable bus devices. ok jsg@ kettenis@ | |||
2016-04-29 | Do not remove local symbols from the table. | Martin Pieuchot | |
ddb(4) can now see static functions. That doesn't mean we should start declaring functions as ``static'', however it helps for the few existing exceptions. ok deraadt@, kettenis@ | |||
2016-04-25 | Switch most of the cp14/cp15 use in .S files over to using sysreg.h | Jonathan Gray | |
Matched and changed by a script, verified to cause no binary change with armv7, armish, and zaurus kernels. ok patrick@ | |||
2016-03-30 | for some time now mandoc has not required MLINKS to function | Jason McIntyre | |
correctly - logically complete that now by removing MLINKS from base; authors need only to ensure there is an entry in NAME for any function/ util being added. MLINKS will still work, and remain for perl to ease upgrades; ok nicm (curses) bcook (ssl) ok schwarze, who provided a lot of feedback and assistance ok tb natano jung | |||
2016-01-15 | Move files.hid above files.i2c to fix armish build | Tobias Ulmer | |
2016-01-08 | Move HID support files out of dev/usb into new dev/hid directory | Joshua Stein | |
These files aren't USB-specific and were used by the previous Bluetooth implementation, and will be used by the upcoming HID-over-i2C implementation ok deraadt previous version ok kettenis and mpi | |||
2016-01-08 | Enable uonerng(4) where ualea(4) is already present. | Martin Pieuchot | |
2015-10-01 | Use DOS_LABELSECTOR rather than LABELSECTOR to indicate offset into an | Kenneth R Westerback | |
OpenBSD partition when accessing the disklabel. For these files both are '1', but this makes the usage consistent across all archs. ok guenther@ miod@ | |||
2015-10-01 | Remove more blinding trailing whitespace. | Kenneth R Westerback | |
2015-09-19 | intr_barrier(9) for arm | Jonathan Gray | |
ok kettenis@ | |||
2015-09-10 | reduce .Nd to one line and kill .Tn while here | Ingo Schwarze | |
2015-07-17 | remove obsolete INET kernel option | Ted Unangst | |
2015-07-17 | Remove {LOAD,COUNT}_TEXTA from libsa loadfile, it only made sense for a.out | Miod Vallat | |
kernels and we no longer have any. | |||
2015-06-24 | Make ARM_KERNEL_BASE explicitely unsigned | Miod Vallat | |
2015-06-22 | document that boot.conf can contain comments; | Jason McIntyre | |
from tilo stritzky thanks miod for help with the diff, and who also noted that leading whitespace gets stripped too; | |||
2015-06-05 | Missing no-pie logic for bootblocks. | Miod Vallat | |
2015-05-10 | VM_MAX_KERNEL_ADDRESS is the end of the kva range not the end of | Jonathan Gray | |
addressable virtual memory space but arm ports were using a value of 0xffffffff for this. Instead of using a shared VM_MAX_KERNEL_ADDRESS define add md VM_KERNEL_SPACE_SIZE defines based on the KERNEL_VM_SIZE values from the respective machdep.c files. djm's novena was hitting "panic: bufinit: can't reserve VM for buffers" without a similiar change. ok miod@ | |||
2015-05-08 | Need explicit <sys/kcore.h> include now. | Miod Vallat | |
2015-05-05 | emul_native is only used for kernel threads which can't dump core, so | Philip Guenther | |
delete coredump_trad(), uvm_coredump(), cpu_coredump(), struct md_coredump, and various #includes that are superfluous. This leaves compat_linux processes without a coredump callback. If that ability is desired, someone should update it to use coredump_elf32() and verify the results... ok kettenis@ | |||
2015-04-16 | Enable ualea(4) where we have uhub(4), these USB device lists cry for | Martin Pieuchot | |
unification... | |||
2015-01-24 | correct the syntax description of the boot command; ok jmc@ | Christian Weisgerber | |
2015-01-18 | unifdef IPKDB. These codepaths are holdouts from NetBSD code and are | Jonathan Gray | |
not used. | |||
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-04 | add new driver uslhcom(4) USB HID based UART. | uaa | |
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-03 | More duplicate #include cleanout. | Kenneth R Westerback | |
ok deraadt@ tedu@ | |||
2014-11-24 | use the correct capitalization for Realtek. | Brad Smith | |
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-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-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-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-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 | add copyright and rcs id | Jasper Lievisse Adriaanse | |
"go ahead" kettenis@ | |||
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@ |