summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-24tga, file: 15-bit tga imagesftrvxmtrx
2013-01-24cons(3): add /dev/mordor to the liststanley lieber
2013-01-22tga: fix flip/reflectftrvxmtrx
2013-01-22arp: fix memory leaks for "flush" and "del" arp ctl messagescinap_lenrek
2013-01-22mount /n/other from /srv/boot instead of /srv/cwfscinap_lenrek
this makes sure tcp boot will have ther user /tmp's the same way as from local cwfs. we used /srv/cwfs to prevent a deadlock with 9660srv as a root filesystem which has been fixed now.
2013-01-229660srv: run 9p service in separate namespace to prevent deadlockcinap_lenrek
we have to run the 9p service process in its own namespace otherwise the attach filename might point onto the served filesystem causing it to deadlock. this happens especially if 9660srv is used as root filesystem. (cdboot)
2013-01-21audioac97: set adc ratecinap_lenrek
set adc (recording) sample rate the same as playback for now. make these separate entries later when we reintroduce in/out attributes to volume controls.
2013-01-21file: more sanity checking for tga image detection to avoid false positivescinap_lenrek
2013-01-21tga: fix bad output channel descriptor for grayscale images and -9 flag, ↵cinap_lenrek
revert page work arround
2013-01-21mergeftrvxmtrx
2013-01-21page: image/tgaftrvxmtrx
2013-01-21page: force images to RGB using -3 flag (fixes grey-scale images displaying)ftrvxmtrx
2013-01-21file: detect tga imagesftrvxmtrx
2013-01-20readtga: fix b/w, add color-mapped images supportftrvxmtrx
2013-01-20totruecolor: support CRGBV images as inputftrvxmtrx
2013-01-20readtga: clean-upftrvxmtrx
2013-01-18rewrite.direct: rewrite aliases before delivering to local users to avoid ↵stanley lieber
re-sending the message
2013-01-19audiohda: automatically pick inpincinap_lenrek
2013-01-19audio: add port/audioif.h dependencies to mkfilecinap_lenrek
2013-01-19audiohda: first attempt on audio recording support for intel hda audio, ↵cinap_lenrek
distinguish mode in audio code
2013-01-18mergecinap_lenrek
2013-01-18audioac97: audio recordingcinap_lenrek
2013-01-17fortunes: maybe i should ask at #cat-vstanley lieber
2013-01-17webfs: handle multiple WWW-Authenticate headers, fix fmtstrinit() memory leakscinap_lenrek
2013-01-16vncv: do flushimage() under display lock, zero ypdate rectcinap_lenrek
2013-01-146in4: add -o option to make it possible to use different nets for ipv6 and ↵cinap_lenrek
ipv4 interface
2013-01-13Four shall be the number thou shalt count, and the number of the counting ↵cinap_lenrek
shall be four.
2013-01-13plan9.ini(8): isa uartscinap_lenrek
2013-01-13vt: ignore line spacing escape2cinap_lenrek
2013-01-13remove non standard COM3 (eia2) serial port from i8250 uart.cinap_lenrek
access to non standard serial port COM3 at i/o port 0x200 causes kernel panic on some machines (Toshiba Sattelite 1415-S115). also, some machines have gameport at 0x200. i readded uartisa to the pcf and pccpuf kernel configurations so one can use plan9.ini to add non standard uarts like: uart2=type=isa port=0x200 irq=5
2013-01-13hjfs: dont mask permission bits for "create" console commandcinap_lenrek
2013-01-12webfs: preauth supportcinap_lenrek
2013-01-11hget(1): fix typo, various cleanupscinap_lenrek
2013-01-11hget(1): document restrictions for name@file with -m flag, fix examples, usagecinap_lenrek
2013-01-11mk: fix ar padding problems on 64bit (from eriks amd64mkar patch)cinap_lenrek
2013-01-11libdraw: gengetwindow() fix mistakecinap_lenrek
dont zero *winp so the "screen" pointer is preserved.
2013-01-10libdraw: gengetwindow() resize racecinap_lenrek
instead of trying to make rio not change the window image too fast and give the client some time to attach it (which turns out to be impossible), we acknowledge that there is a race and just retry the window reattach as long as the winname keeps changing in gengetwindow().
2013-01-10mergecinap_lenrek
2013-01-10still races, reverting... need a better approach.cinap_lenrek
2013-01-09mergecinap_lenrek
2013-01-09rio: fix window resize and attach racecinap_lenrek
if a window gets hidden/unhidden/resized too fast, the client might have no chance attaching to that image using winname. so we move the window offscreen instead and delay the freeimage() by doing it in the deletethread().
2013-01-09hjfs(4): update man pagestanley lieber
2013-01-09vac(1), ec(2), usb(3), hjfs(8): fix source referencecinap_lenrek
2013-01-09tlssrv(8): fix bad cross referencecinap_lenrek
2013-01-09audio(1): various cleanupscinap_lenrek
2013-01-09add intel 82598 10gb ethernet to pcf and pccpuf configuration, add support ↵cinap_lenrek
for 82599 (from sources)
2013-01-09devtls: fix hmac buffer size for SHA1 hashes (from erik)cinap_lenrek
the buffer isn't big enough for SHA1 hashes, which are larger than MD5 hashes.
2013-01-09ape: fix getsockname() byte swaped ports (by yarikos)cinap_lenrek
APE's getsockname() returns port with bytes swapped (on 386).
2013-01-08libdraw: fix wrong menusel() calculation for menuhit() (noticable with small ↵cinap_lenrek
fonts) the text for a menu entry is drawn from: y = textr.min.y + i*(font->height+Vspacing); but we calculated the item from: r = insetrect(textr); i = (p.y - r.min.y) / (font->height+Vspacing); the insetrect is wrong.
2013-01-08aux/vga: remove debug printscinap_lenrek