Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-08-11 | An old dvorak typo was lurking here. | Miod Vallat | |
2006-08-01 | make this more like a real cylon mode (no pauses at the end!) | Theo de Raadt | |
2006-07-27 | Compile all kernels with -Wstack-usage-larger-than-2047, now that all | Miod Vallat | |
offending code has been taken out and shot. ok deraadt@ | |||
2006-07-25 | Do not bother reading the existing colormap on attach, since we will | Miod Vallat | |
override it with the rasops one. | |||
2006-07-24 | move large local array out of a "called once, only at boot" function | Theo de Raadt | |
into being a global, to reduce stack size; ok miod | |||
2006-07-20 | fix various ways of spelling 'access' wrong in comments | Martin Reindl | |
2006-07-01 | Provide our own alloc_attr() routine for sun frame buffer, since the computation | Miod Vallat | |
of highlighted color indexes is slightly different due to different black and white color code (and the fact that the default white is the highlighted white). | |||
2006-06-30 | For 32bit sun frame buffers, tweak ri_devcmap to get the BoW palette instead | Miod Vallat | |
of needing different WSCOL_{BLACK,WHITE} values than 8bit frame buffers. This allows us to not special case the alloc_attr() invocations depending on the color depth, and to make WSCOL_{BLACK,WHITE} constants again in the wsemul_sun land. | |||
2006-06-29 | No need to keep specific variables for the kernel messages colors on sun | Miod Vallat | |
emulation, we can reuse the existing WSCOL_xxx codes, and WSCOL_BLACK and WSCOL_WHITE will point to variables anyway. | |||
2006-06-29 | If invoking mapdev() with a non-aligned pa, make sure we allocate enough pages | Miod Vallat | |
if we cross a page boundary; really only necessary for some sun4 tricky attachments, no functional change. | |||
2006-06-29 | Map the correct size for the colormap registers (not that it really matters | Miod Vallat | |
since this is rounded up one page). | |||
2006-06-26 | atop(PAGE_SIZE) -> 1, 'tis true but it gets computed faster when PAGE_SIZE | Miod Vallat | |
is not a constant. | |||
2006-06-26 | Enable wide targets on FAS366 esp; note that this changes the way esp | Miod Vallat | |
user-controllable device flags are parsed, be sure to rerun config(8) on your next kernel compile. | |||
2006-06-26 | Use MI clock conversion code for "old" clock. | Mark Kettenis | |
ok miod@ | |||
2006-06-25 | fix a typo in a comment and add the comment to the sparc hme driver. | Brad Smith | |
2006-06-23 | Use MI clock conversion code for "new" clock. | Mark Kettenis | |
ok deraadt@, miod@ | |||
2006-06-19 | move clock_subr.c to a better place, and now it is always in the kernel | Theo de Raadt | |
so that things can use it; tested on all architectures; ok kettenis | |||
2006-06-09 | {x,}ldcontrolb() codepath is SUN4-only, so don't bother checking for Lfsbail | Miod Vallat | |
in mem_access_fault4m. | |||
2006-06-02 | sbus_establish() and the associated linked list in the sbus softc is now only | Miod Vallat | |
used to store a per-device reset callback, for use in sbusreset(). Except sbusreset() has never, ever, been used since Torek's sbus code went in. Time to recycle those wasted bits. | |||
2006-06-02 | When trying to find leaf lebuffer devices, to work around broken old PROMs, | Miod Vallat | |
walk the lebuffer_cd device list, instead of the sbus children list. | |||
2006-06-01 | Right at the end of a debug kernel build, the current Makefile copies bsd | Christopher Pascoe | |
(with symbols) to bsd.gdb, then strips bsd. This diff makes it rename the file with symbols, and then asks strip to output the stripped version as bsd. Avoids a potentially lengthy wait when we would otherwise copy the large (50MB+) kernel with debug symbols. ok reyk@ ketennis@ | |||
2006-05-29 | Convert NetBSD new-style %b strings to old-style. | Miod Vallat | |
2006-05-27 | unknown ioctl is ENOTTY not EINVAL | Jason Wright | |
2006-05-14 | Make the array of fpu exception types/codes big enough. | Mark Kettenis | |
Fix a typo too, such that we actually read beyond element 0 in all cases. ok miod@ | |||
2006-05-07 | Long due update from a.out to ELF (slightly different) relocation defines, | Miod Vallat | |
from sparc64 with love. Spotted by drahn@ | |||
2006-04-29 | fix build after timestamping addition; sparc pointed out by pvalchev@ | Christian Weisgerber | |
2006-04-27 | 2 lines of code in most drivers, to do the timestamping; ok miod kettenis | Theo de Raadt | |
2006-04-16 | Remove can't happen DIAGNOSTIC check. | Miod Vallat | |
2006-04-16 | Convert the last remaining net-driver users of ether_input to ether_input_mbuf. | Christopher Pascoe | |
sgec ok martin@ if_ie ok miod@ if_de, if_hp not in GENERIC ok brad@ | |||
2006-04-09 | #ifdef lint wraps for va_start | Theo de Raadt | |
2006-03-25 | allow bpf(4) to ignore packets based on their direction (inbound or | Damien Miller | |
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@ | |||
2006-03-23 | Extra parentheses in comments. | Ray Lai | |
From Alexey Dobriyan. OK miod@ and otto@ | |||
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 | Switch sparc to device_register() to find out its boot device (when it's a | Miod Vallat | |
disk). | |||
2006-03-15 | Entries in cd_devs[] may be NULL, so be sure to check for them in your | Miod Vallat | |
device open() function. | |||
2006-03-12 | Previous fix was half-done, move the wsscreen_list array into the softc | Miod Vallat | |
as well. | |||
2006-03-12 | When attaching a wsdisplay, the wsscreen_list structure can not be on the | Miod Vallat | |
stack; found the hard way by Stefano <stefano@merlinobbs.net>. | |||
2006-03-12 | remove splimp. | Brad Smith | |
2006-03-04 | These devices are DV_DULL, not DV_IFNET... not that it really matters. | Miod Vallat | |
2006-03-04 | Properly display underlined space characters. | Miod Vallat | |
2006-02-28 | Shrink NKMEMPAGES_MAX back to 4MB for 3.9, as this still has issues on >= 512MB | Miod Vallat | |
machines; this will be fixed post release. Reported by Serge Basterot. ok deraadt@ | |||
2006-02-25 | Put quotation marks around names of unconfigured devices. | Mark Kettenis | |
ok deraadt@ | |||
2006-02-22 | Constify arrays and strings; plus KNF. | Miod Vallat | |
2006-02-22 | Attach as scf0 as per the config(8) stanza, instead of sysconfig0. | Miod Vallat | |
2006-02-22 | Remove unused probeset() function. | Miod Vallat | |
2006-02-22 | Remove unused _{ins,rem}que functions - they were not even implemented on | Miod Vallat | |
all architectures. | |||
2006-02-12 | Disable sync when blanking if display.vblank is set to off. | Miod Vallat | |
2006-02-12 | Run the tvtwo emulation mode in the 8 bit plane, and keep mapped mode 32 bit. | Miod Vallat | |
2006-02-12 | Don't cause the screen border to be black; but we have to clear the whole | Miod Vallat | |
screen until console uses a low-depth plane; and if I could remember who to thank for the Xvideo board I got via Wim, things would be even better. |