Age | Commit message (Collapse) | Author | |
---|---|---|---|
1995-12-08 | unconfiguring of ccd causes system panic; fix from gdonl@gv.ssi1.com; netbsd ↵ | Theo de Raadt | |
pr#1820 | |||
1995-12-07 | update to use new files in libsa | Theo de Raadt | |
1995-12-07 | shrink bootblocks by splitting libsa contents into more files. from | Theo de Raadt | |
waldi@moacs.indiv.nl.net, netbsd pr#1817 | |||
1995-12-06 | various changes to once again shrink the bootblocks to a useable size. | Theo de Raadt | |
1995-12-06 | optimize further | Theo de Raadt | |
1995-12-05 | delete memcpy; it makes bootblocks larger without being needed | Theo de Raadt | |
1995-12-05 | working .cvsignore files | Theo de Raadt | |
1995-12-05 | this is useful in compile directories | Theo de Raadt | |
1995-12-05 | Third try at importing the mvme88k port. This is a working kernel | Theo de Raadt | |
from nivas. Userland and compiler still need to be worked on. Make certain what directory the import is done from. | |||
1995-12-03 | Rearrange user page table size calculation so that silent overflow | Niklas Hallqvist | |
cannot occur | |||
1995-12-03 | Restore condition codes if we pull the special_fp_store | davem | |
trick before returning from the trap. | |||
1995-12-01 | we cannot jump into ddb until the interrupt has been acknowledged to the | Theo de Raadt | |
chip. set a flag and defer calling ddb till end of interrupt routine. | |||
1995-12-01 | previous verbosity patch was wrong | Theo de Raadt | |
1995-12-01 | add CONSOLEBREAKDDB support. also be less verbose at boot.. | Theo de Raadt | |
1995-12-01 | Oops, forgot to declare emul_sunos | Niklas Hallqvist | |
1995-12-01 | fixed ddb, improved fifo handling, new still-not-working dma support | Theo de Raadt | |
from drahn@pacific.urbana.mcd.mot.com | |||
1995-12-01 | for now, assume no flash on 167 (is this true?) | Theo de Raadt | |
1995-12-01 | niklas pointed out the new MDP_UNCACHE_WX might break fork/exec. | Niklas Hallqvist | |
always set/clear in setregs() now | |||
1995-12-01 | from netbsd: | Theo de Raadt | |
Changed to use the hacked up version Thor got from the original maintainers. It is uglier than mycroft's version, but it works on a lot more machines than his does. Hopefully this can be fixed "for real" after the release. Note that although it works on a superset of the machines that mycroft's did, it is still broken on some slower machines with fast disks. The thing is full of timing bugs. Sigh. | |||
1995-11-30 | properly catch cases where buffers are on the kstack, from ↵ | Theo de Raadt | |
hannken@eis.cs.tu-bs.de | |||
1995-11-30 | correct way to call tsleep is almost always "while (condition) tsleep(...)" | Theo de Raadt | |
1995-11-30 | do not truncate swdevt[] ever | Theo de Raadt | |
1995-11-30 | in actual fact MAXPARTITIONS is 16 and scsi disk is major 4 | Theo de Raadt | |
1995-11-30 | prevent access to page 0 of virtual space | Theo de Raadt | |
1995-11-30 | integrate 040 MDP_UNCACHE_WX cache changes by niklas & deraadt | Theo de Raadt | |
1995-11-30 | do not drop into debugger on simple recoverable errors | Theo de Raadt | |
1995-11-29 | niklas pointed out the new MDP_UNCACHE_WX might break fork/exec. | Theo de Raadt | |
always set/clear in setregs() now | |||
1995-11-28 | add inet_ntoa() to the kernel. use it to log nicer messages. idea from freebsd | Theo de Raadt | |
1995-11-28 | Fix SunOS emulation on 040 | Niklas Hallqvist | |
1995-11-28 | Fix SunOS emulation on 040 | Niklas Hallqvist | |
1995-11-28 | Fix SunOS emulation on 040 | Niklas Hallqvist | |
1995-11-28 | on the '040, do not cache write+exec pages for sunos processes. SunOS ld.so | Theo de Raadt | |
is unaware of split I/D caches, and hence messes up. patch by niklas | |||
1995-11-28 | Fix SunOS emulation on 040 | Niklas Hallqvist | |
1995-11-28 | let loadbsd define sync scsi operation | Theo de Raadt | |
1995-11-28 | i386 isa bounce buffers by hannken@eis.cs.tu-bs.de | Theo de Raadt | |
1995-11-28 | i386 isa bounce buffers by hannken@eis.cs.tu-bs.de | Theo de Raadt | |
ultra14f does not bounce properly yet. | |||
1995-11-28 | delete last chunks of MAPPEDCOPY | Theo de Raadt | |
1995-11-28 | delete duplicate sysarch function body | Theo de Raadt | |
1995-11-28 | log source route attempts when source routing is disabled | Theo de Raadt | |
1995-11-26 | add sysctl net.inet.ip.sourceroute option; default to 0. copied from freebsd | Theo de Raadt | |
1995-11-23 | from netbsd | Theo de Raadt | |
1995-11-23 | userret() parameter botch; prototype userret(); make ddb easier to enter | Theo de Raadt | |
1995-11-23 | MAPPEDCOPY is garbage; it is not cache-aware | Theo de Raadt | |
1995-11-23 | as has no -g flag | Theo de Raadt | |
1995-11-22 | fake all target | Theo de Raadt | |
1995-11-22 | go away | Theo de Raadt | |
1995-11-22 | do not need to load off 4.3 filesystems | Theo de Raadt | |
1995-11-22 | release text vnode before releasing credentials. vnode releasing can | Theo de Raadt | |
block, but credentials should be alive until the process is really dead. from tegge@idt.unit.no; netbsd pr#1767 | |||
1995-11-22 | change ZLRB_RING_SIZE to 4096 | Theo de Raadt | |
1995-11-22 | from netbsd: | Theo de Raadt | |
Prevent the ITE_ACTIVE bit from being cleared in iteoff() if the ITE_ISCONS bit is set. Works around the fact that the last process to have the console open exits, the bit is cleared, and "syncing disks...", etc. is not seen if the system is rebooted with reboot(8). Fixes PR #1455. |