summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-01mergecinap_lenrek
2015-04-01games/gba: remove debugging printaiju
2015-04-01sgi: very primitive newport graphics driver for indycinap_lenrek
2015-04-01vl: prevent stack altering instructions to be hoisted above loadscinap_lenrek
fixes bug with libmemdraw where the linker would hoist the final ADD $const, SP at the end over loads from the stack causing the front to fall off once a interrupt hits.
2015-03-30webpaste: update for modified okturing.comstanley lieber
2015-03-30nintendo(1): add SOURCE entry for games/gbacinap_lenrek
2015-03-30sgi: preserve R27 in setregisters(), use setregisters() in noted()cinap_lenrek
GEVector() saves the exception return PC in Ureg.r27 which needs to be preserved. there should be no reason for the user to change the status register from noted() eigther, so we now just use setregisters() in noted() to restore previous general purpose registers. this means that CU1 will always be off after noted() because notify() has disabled the FPU on entry and set fpstatus to FPinactive if it was on. once user starts using FPU again, it will trap and restore fpu registers.
2015-03-30mergecinap_lenrek
2015-03-30etherseeq: reset the card when it gets stuck (dma timeouts)cinap_lenrek
2015-03-28/lib/faces: add eekee.1stanley lieber
2015-03-28mergecinap_lenrek
2015-03-28sgi: new approach for etherseeqcinap_lenrek
touching transmit descriptors while dma is running causes the front to fall off. new approach keeps a counter of free descriptors in the Ring structure that is incremented by txintr() when transmit completed. txintr() will clean descriptors once dma has stopped and restart dma when there are more descrtors in the chain.
2015-03-28games/gba: very subtle timer bug fixedaiju
2015-03-28sgi: work in progress kernel for sgi mips machines (only tested with r5k indy)cinap_lenrek
this provides basic console support using the ARC bios routines theu uartarcs driver. and has native seeq ethernet driver which was written by reading the 2ed devseq driver as i have no documentation on the hardware. mmu and trap code is based on the routerboard kernel.
2015-03-27mothra: remove unused confirmcurs; move confirmcursor up with the other cursors.ethan
2015-03-26fortunes: TED, day 1: I want to believe -- WIRED magazinestanley lieber
2015-03-25pc, pc64: state dependency to usbehci.h in mkfilescinap_lenrek
2015-03-25mpdigdiv.s: aaaaand its gone!cinap_lenrek
2015-03-25ape: fix main9 for mipscinap_lenrek
2015-03-25libmp: use portable mpdigdiv routines for mips (causes invalid instruction ↵cinap_lenrek
trap on indy)
2015-03-25ape: fix lockinit() for mipscinap_lenrek
2015-03-25zynq: fix out of bounds access in etherprobe()cinap_lenrek
calling etherprobe() with -1 cardno will rereference and call cards[-1].reset() which is wrong. don't do that!
2015-03-25boot: allow alternative proto files per kernel and kernel config for bootfs.paqcinap_lenrek
bootmkfile will now looks for the following proto files in order and pick the first one it finds to build the bootfs.paq file: 1) $CONF.boofs.proto (config specific) 2) bootfs.proto (kernel specific) 3) $BOOTDIR/bootfs.proto (default generic)
2015-03-24vc: fix coffsect.lnno overflow into nreloccinap_lenrek
the coffsect.lnno field is 16 bit and can overflow into the nreloc field confusing arc firmware on load. just mask it to prevent overflow.
2015-03-23ircrc: remove unused clonefileftrvxmtrx
2015-03-23boot: bind #c to /dev with MREPL instead of MBEFORE to avoid double entriescinap_lenrek
2015-03-22vl, libmach, kernel: mips has 16K alignment for segments (for bigpages)cinap_lenrek
2015-03-22mergecinap_lenrek
2015-03-22usbohci: ensure Ed and Td alignment, fix for amd64cinap_lenrek
2015-03-19mergecinap_lenrek
2015-03-19db: fix unicode support (thanks giacomo)cinap_lenrek
from the unicode-db patch readme: command() receives a char* that is assigned to lp, which is a Rune*, and lp is incremented later in readchar(), so each read consumed 4 bytes. The only time command() is called is in runpcs() with bkpt->comm, which is a char* built in subpcs through a char*, so the string stored in bkpt->comm was not a Rune string. A way to test the bug is: db program main:b argv/X :r
2015-03-18pushtls(2): tls.h -> libsec.h (thanks, pr)stanley lieber
2015-03-18dhcpd: ignore ";" filename from sgi arcs bootp(); commandcinap_lenrek
2015-03-18libmach: use #pragma pack to force 4 byte alignment of bootexec.h structures ↵cinap_lenrek
for amd64
2015-03-18ape: silence compiler "no return at end of function" for mips lock.ccinap_lenrek
2015-03-17mergecinap_lenrek
2015-03-176c: MOVL xxx, r; MOVLQZX r, r -> MOVL xxx, rcinap_lenrek
eleminate MOVLQXZ instructions after MOVL as MOVL implicitely zero extends the result.
2015-03-16ssam: fix typostanley lieber
2015-03-16ssam: don't pollute the environment.stanley lieber
2015-03-16mp(2) man page: mpinvert, not mpinverse (thanks, pr)stanley lieber
2015-03-16kernel: get rid of auxpage() and preserve cache index bits in Page.va in ↵cinap_lenrek
mount cache the mount cache uses Page.va to store cached range offset and limit, but mips kernel uses cache index bits from Page.va to maintain page coloring. Page.va was not initialized by auxpage(). this change removes auxpage() which was primarily used only by the mount cache and use newpage() with cache file offset page as va so we will get a page of the right color. mount cache keeps the index bits intact by only using the top and buttom PGSHIFT bits of Page.va for the range offset/limit.
2015-03-16kernel: avoid repeated calls to reclaim(), dont miss last page in Ptecinap_lenrek
when we are skipping a process because we could not acquire its segment lock, dont call reclaim() again (which is pointless as we didnt pageout any pages), instead try the next process. the Pte.last pointer is inclusive, so don't miss the last page in pageout().
2015-03-15rsa(8): recommend secstore(1) for Plan 9 RSA private key storagecinap_lenrek
2015-03-15mothra: <del>, <ins>, <wbr>cinap_lenrek
2015-03-15mothra: add <strike> supportcinap_lenrek
2015-03-15boot: disable group/other permission checking in bootfs paqfscinap_lenrek
when building bootfs in d770 mode directory, the other permissions in bootfs paq are masked off which results in boot to fail. theres no point in checking group/other permissions on boot, so just disable permissin checking in paqfs with the -a flag.
2015-03-14doom: print correct version number on mismatch (thanks qu7uux)cinap_lenrek
2015-03-14webfs: do not send credentials in automatic referer urlcinap_lenrek
2015-03-14rc-httpd: support for http basic authentication, fix cgi support to work ↵cinap_lenrek
with hgweb.cgi
2015-03-14httpauth: little helper for rc-httpd to do http basic authentication with ↵cinap_lenrek
plan9 auth server