Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-11 | Some people say that "__asm __volatile("")" is not enough. | Artur Grabowski | |
Use "__asm __volatile("":::"memory")" to completly avoid reordering. | |||
2002-12-11 | Added paranoia to make sure that gcc doesn't reorder spl* inlines. | Artur Grabowski | |
2002-12-11 | delay(1) is enough on attention | Michael Shalayeff | |
2002-12-10 | achetypal -> archetypal | Miod Vallat | |
2002-12-10 | VT100 emul is the default, and there is no point yet having more than one | Miod Vallat | |
wsscreen per wsdisplay device ; from deraadt@ long ago. | |||
2002-12-10 | Use CPU_ISSUN4M macro rather than check cputyp value. Consistent with the rest | Miod Vallat | |
of the file. | |||
2002-12-10 | No need to hardclock IPL_STATCLOCK value anymore. | Miod Vallat | |
2002-12-10 | Use bus_addr_t rather than paddr_t when it makes sense, and use TAILQ macros | Miod Vallat | |
as well. | |||
2002-12-10 | ``synthesizers'' is too difficult to spell correctly. | Miod Vallat | |
2002-12-10 | Typos, and fix a comment's content. | Miod Vallat | |
2002-12-10 | interupt->interrupt | Miod Vallat | |
2002-12-10 | Add RCS ids. | Miod Vallat | |
2002-12-10 | You would think cleaning your tree every now and then would eventually never | Miod Vallat | |
produce typo fixes, but the typo pool is infinite. | |||
2002-12-10 | The introduction of fbwscons_setcolormap() left out 24 bit frame buffers | Miod Vallat | |
operating in 8 bit mode, such as on the installation media... Installing with a pale grey on white is not what I would call a friendly display, ouch. | |||
2002-12-10 | Register as the "std" wscons device, not "sun". This is consistent with other | Miod Vallat | |
frame buffers, and produces less confusing dmesg output. | |||
2002-12-10 | Fix spurious \n in dmesg output | Miod Vallat | |
2002-12-09 | update utah-u copyright from the newer pmk snap; 10x to mike hibler for ↵ | Michael Shalayeff | |
rolling one just for this | |||
2002-12-09 | From Andrushock, s/sucess/success/g | Todd C. Miller | |
2002-12-08 | Remove header file which is unused since the removal of if_gm, pointed out | Dale Rahn | |
by brad@ some time back. | |||
2002-12-08 | duh, provide a wrapper on the hardclock() since it's void | Michael Shalayeff | |
2002-12-08 | put the -fno-stack-protector into a proper place | Michael Shalayeff | |
2002-12-06 | unkown; torh@bogus.net | Theo de Raadt | |
2002-12-05 | remove altq entries. | Kenjiro Cho | |
altq is merged into pf and handled through pf. | |||
2002-12-04 | Add a few more phys: exphy, brgphy, iophy, inphy | Jason Wright | |
2002-12-04 | Make ti(4) use busdma and add all of the necessary stuff to support both | Nathan Binkert | |
endian modes. This makes ti now work on macppc and sparc64. While we're at ti, clean up a bit of the code: Use SLIST instead of LIST Remove register Use bus_space instead of bcopy/bzero Don't use bitfields since it makes dealing with endianness annoying. ok jason@, deraadt@ | |||
2002-12-03 | Use bus_space_vaddr() instead of checking the mapping directly (this will | Jason Wright | |
be necessary soon); from henric@ | |||
2002-12-02 | Skip the ffb0, ffb1, pcia/slot2 (for psycho), and pcia/slot3 (for psycho) | Jason Wright | |
interrupt map matches; from FreeBSD. | |||
2002-12-02 | remove trm to fit propolice onto the floppy | Theo de Raadt | |
2002-12-02 | remove aic to fit propolice onto the floppy | Theo de Raadt | |
2002-12-02 | Import propolice (http://www.trl.ibm.com/projects/security/ssp), a stack | Miod Vallat | |
attack protection scheme, into gcc. This protection is enabled by default. It can be turned off by using the -fno-stack-protector flag. Code by Hiroaki Etoh (etoh at jp dot ibm dot com); work on openbsd-specific integration by fgsch@, deraadt@ and myself; tests by fgsch@, naddy@ and myself; beer drinking by myself. Please note that system upgrades with this new code will require a new libc and ld.so to be build and installed before the propolice-enabled compiler can be installed. | |||
2002-11-30 | Add driver for Belkin usb serial adapters. | Nathan Binkert | |
Driver from Alexander Kabaev <kan.FreeBSD.org> and Ichiro FUKUHARA <ichiro@ichiro.org> | |||
2002-11-30 | add uvscom(4), but comment it out | Nathan Binkert | |
2002-11-29 | inconsistant spelling; torh@bogus.net | Theo de Raadt | |
2002-11-29 | Foward; torh@bogus.net | Theo de Raadt | |
2002-11-29 | Upon detection of an international Sun keyboard with a recognized layout, | Miod Vallat | |
attach it with the appropriate keymap table, rather than the default KB_US table. If this is not the expected behaviour, users can still revert to US layout via "kbd us" or "wsconsctl -w keyboard.encoding=us". As the installation media uses the prom console, which will honor the international keyboard layout, this will definitely help users with international keyboards and fancy characters in their passwords... Note that there is still some Sun keyboard tables missing at the moment. | |||
2002-11-28 | same devices named the same | Michael Shalayeff | |
2002-11-28 | generic isa mpu, from Sergey A. Smitienko w/ fixes from me | Michael Shalayeff | |
2002-11-27 | no wrapper arounf hardclock(), use CPU_CLOCKUPDATE, real microtime; miod ok | Michael Shalayeff | |
2002-11-26 | Make the PTE constants unsigned long with UL. | Artur Grabowski | |
The macro PG_PALCODE in pte.h is supposed to be used when comparing two ptes to see if we need a tlb flush. For that it uses the macro ALPHA_PTE_PALCODE which in turn is defined to ~ALPHA_PTE_SOFTWARE. Unfortunately ALPHA_PTE_SOFTWARE is small enough to fit in an int, so ALPHA_PTE_PALCODE becomes an int to and the masking in PG_PALCODE masks off the pfn in the pte and pmap_enter will then fail to flush certain TLB entries when it needs to (this situation shouldn't happen too often). This might or might not be the solution for the memory corruption bug I've been hunting for the last three months (the machine still borks up, but in different ways now). | |||
2002-11-25 | enable fxp(4) and xl(4) on sparc64; ok jason@ | Christian Weisgerber | |
2002-11-24 | also no opt_user_ldt.h | Philipp Buehler | |
miod@, millert@ ok | |||
2002-11-24 | Be sun4m-friendly in FDC_C_HANDLER case. | Miod Vallat | |
2002-11-24 | Fix a kernel fault in FDC_C_HANDLER code. | Miod Vallat | |
2002-11-24 | Make this compile again if FDC_C_HANDLER is defined. | Miod Vallat | |
2002-11-24 | When initializing the colormap on low depth frame buffers, pick values | Miod Vallat | |
from rasops_cmap table, rather than providing our own, especially when they are wrong. | |||
2002-11-23 | Mention that hme does not work in sun4c machines. | Miod Vallat | |
2002-11-22 | new sysctl: machdep.v8mul says whether the kernel replaced the mul/div/rem | Theo de Raadt | |
stubs, so that userland can do the same. we cannot just determine based on sun4m, because cypress (at least) is a sun4m cpu without the instructions | |||
2002-11-22 | Add xl for pci and cardbus. It seems to work, needs additional testing... | Dale Rahn | |
2002-11-21 | add ubsec and lofn | Jason Wright | |
2002-11-21 | MID_MACHINE should not be 0 (MID_ZERO) but MID_POWERPC, | Dale Rahn | |
not used in kernel anyway. pointed out by art@ |