Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-24 | cpu_cpuspeed has a proper external def, remove this one, suggested by tedu | Dale Rahn | |
2003-12-24 | support cpu_cpuspeed on macppc. | Dale Rahn | |
2003-12-20 | Pass -Wformat | Miod Vallat | |
2003-12-18 | Fix for monotomic time, lasttb is now in sync with 'time'. ok otto@ | Dale Rahn | |
2003-11-21 | + -fno-builtin-* on architectures confirmed to work. | Marc Espie | |
2003-11-12 | Be sure to cast the wsdisplay accessops cookie into the adequate structure; | Miod Vallat | |
prevents wsconscfg from panic'ing the system. Reported by ``kluxis''. | |||
2003-11-06 | move netisr definition into md code to allow arch provide suitable ↵ | Michael Shalayeff | |
allocation; tested on most archs | |||
2003-11-03 | spelling fixes (in the comments) | David Krause | |
2003-10-31 | Fix ppc segment register restores, this fixes the 1GB ram limit and | Dale Rahn | |
cleans up pieces in the pmap code. tested otto, brad, miod, pval. | |||
2003-10-31 | Enable wi@usb, otherwise this will never get tested... deraadt@ | Dale Rahn | |
2003-10-30 | Add us.dvorak. ok maja@ | Thomas Nordin | |
2003-10-30 | fix NULL/0 mixup. drahn ok | Jun-ichiro itojun Hagino | |
2003-10-30 | simplify cfdriver initialization. drahn ok | Jun-ichiro itojun Hagino | |
2003-10-26 | Add line for wi@usb, currently commented out, for development and testing only. | Dale Rahn | |
2003-10-26 | Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress, | Dale Rahn | |
it does not yet handle bulk data copies or hostap mode. Only one model currently supported, however driver may support other PRISM based adapters. ok millert@ fgsch@ | |||
2003-10-26 | More ansi/knf missed the first time around. | Dale Rahn | |
2003-10-26 | Oops, I'm on drugs. Revert and blame gremlins for the state of my tree. | Miod Vallat | |
2003-10-26 | Unbrek after recent wdc changes. | Miod Vallat | |
2003-10-25 | Support the TI1410 Cardbus bridge found in some apple laptops. ok brad@ | Dale Rahn | |
2003-10-24 | If cons_backlight_available is not set, cons_brightness will not be valid, | Dale Rahn | |
return -1 to indicate so. same as WSDISPLAYIO_PARAM_BACKLIGHT. | |||
2003-10-24 | IPKDB has never been supported in OpenBSD/powerpc/macppc delete this | Dale Rahn | |
old unused code. Remove very old 'where' debugging references. ANSI a previously missed function. | |||
2003-10-22 | Search for the '/backlight' node to determine if backlight control is | Dale Rahn | |
available instead of looking for the backlight-control attribute. Fixes backlight control on some apple laptops. | |||
2003-10-21 | Fix copy bounds, however did this work??? Well it didn't. | Dale Rahn | |
Confirmed by nate@ and tedu@ | |||
2003-10-21 | spacing cleanup. | Dale Rahn | |
2003-10-21 | Missed ANSI. | Dale Rahn | |
2003-10-21 | This was changed from a magic number to a define in the header file, | Dale Rahn | |
but this one was missed. | |||
2003-10-20 | Instead of using xor to clear a register , use li <REG>,0 (load immediate) | Dale Rahn | |
Easier to read and suppose to be slightly faster on some ppc processors. A bit of comment cleanup while here. | |||
2003-10-19 | Use defines instead of magic constants for more IPL_ stuff, also sort | Dale Rahn | |
the IPL_ values by priority, not somewhat random values. No unmodified code relied on the order of these defines. | |||
2003-10-18 | ANSI/KNF now that conflict has been resolved. | Dale Rahn | |
2003-10-17 | Merge an old fix from NetBSD: | Alexander Yurchenko | |
- do not stop/unload current DMA operation if an IRQ was not detected by DMA engine unless the force flag was given, fixes DMA problems in shared IRQ setups; - ack interrupt before entering DMA codepath Tested by many. Work by niklas@ but he doesn't want to commit it for some reason. | |||
2003-10-16 | more white | Theo de Raadt | |
2003-10-16 | There is no end to the ANSI/KNF journey. | Dale Rahn | |
2003-10-16 | spaces | Theo de Raadt | |
2003-10-16 | more ANSI/KNF. | Dale Rahn | |
2003-10-15 | Further down the ANSI/KNF road, only binary difference is __LINE__. | Dale Rahn | |
2003-10-15 | asm readability register names are %r0 instead of 0. No binary change. | Dale Rahn | |
2003-10-15 | The ANSI/KNF trail continues. No binary differences. | Dale Rahn | |
2003-10-08 | Fix endian bug in macppc bus_space_set_region_N(). ok miod@ | Dale Rahn | |
2003-10-03 | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for | Miod Vallat | |
separate tty registering is gone now that sparc has switched to wscons, and this makes the code less error-prone. Also, remove tests for ttymalloc() failure, since it uses M_WAITOK. ok millert@ deraadt@, tested by various people as well besides me... | |||
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller | |
now call the poll backend. With this change we implement greater poll(2) functionality instead of emulating it via the select backend. Adapted from NetBSD and including some changes from FreeBSD. Tested by many, deraadt@ OK | |||
2003-09-22 | Off-by-ones, from aaron@ | Miod Vallat | |
2003-09-06 | Fix boot -a, add protected cnpollc(). ok deraadt@ | Dale Rahn | |
2003-08-27 | Enable 'Snag' boot on newer Apple machines. | Dale Rahn | |
2003-08-21 | These files were intended for X11 support, but serve no purpose nowadays, | Miod Vallat | |
as sparc* do not use Xsun-compatible event interface anymore, and alpha only used this for Xtga which we do not ship anymore. Discussed long ago with matthieu@ | |||
2003-08-15 | change arguments to suser. suser now takes the process, and a flags | Ted Unangst | |
argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@ | |||
2003-08-14 | GENERIC is now safe(4) | Jason Wright | |
2003-08-11 | move to 3.4-beta | Theo de Raadt | |
2003-08-07 | Allow nested interrupts in the openpic interrupt controller, tested by | Dale Rahn | |
brad@ and miod@ | |||
2003-07-29 | Remove a diagnostic print which was left in the code to determine how | Dale Rahn | |
bad integer division is for calculation of the tick timer. Turns out that the typical error on most machines is < .005% just a few seconds per week. Not enough to bother with at this time. | |||
2003-07-22 | Fix .depend generation for assym.h. Resolves PR 1154. | Otto Moerbeek | |
ok deraadt@ |