Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-10 | rename pcf kernel to pc, remove pcf, pccpuf, pccpu64 kernels, update ↵ | cinap_lenrek | |
documentation there isnt much of a point in keep maintaining separate kernel configurations for terminal and cpu kernels as the role can be switched with service=cpu boot parameter. to make stuff cosistent, we will just have one "pc" kernel and one "pc64" kernel configuration now. | |||
2017-09-10 | vmx(3): document changes to devvmx interface | cinap_lenrek | |
2017-08-20 | vt: block selection mode for snarf | cinap_lenrek | |
2017-08-10 | add games/wadfs | qwx | |
2017-07-02 | print(2): clean up vlong flag description | Ethan Grammatikidis | |
2017-07-01 | rc(1): catch up with a change made long before 9front | Ethan Grammatikidis | |
2017-07-01 | pc(1) clarification | Ethan Grammatikidis | |
2017-06-28 | kernel: pass bootargs also in multiboot command line, retire the bootline ↵ | cinap_lenrek | |
mechanism to pass arguments to /boot/boot | |||
2017-06-20 | segment(3): document sticky segment type | cinap_lenrek | |
2017-06-19 | vmx(1), vmx(3): update manpages | aiju | |
2017-06-18 | authsrv(6): don't say old p9any isnt in use anymore... | cinap_lenrek | |
2017-06-13 | add vmx documentation | aiju | |
2017-06-12 | acid(1), proc(3): document watchpoints | aiju | |
2017-06-01 | plan9.ini(8): document netconsole | aiju | |
2017-05-28 | newt: add !cmd | stanley lieber | |
2017-05-26 | newt: honor environment variables $editor and $pager | stanley lieber | |
2017-05-05 | ssh: add -h flag to pass host (for compatibility) | cinap_lenrek | |
2017-05-05 | sed: add -u flag that flushes output buffers before reading in further input | aiju | |
2017-05-04 | bio(2): manpage typo | aiju | |
2017-05-04 | bio: add support for custom I/O handler via Biofn | aiju | |
2017-05-03 | ssh(1): document -T tries option, #subsys cmd behaviour | cinap_lenrek | |
2017-05-03 | ctime(2): fix example (thanks raiz) | cinap_lenrek | |
raiz → the reason that the manpage example works not because it's a correct timezone file format, but because readtimezone() (in libc) fails and defaults to GMT. | |||
2017-05-01 | vt(1): the "send" menu became "paste" | cinap_lenrek | |
2017-05-01 | sshfs(4): fix bad cross reference | cinap_lenrek | |
2017-04-30 | libregexp: miscellaneous little cleanups | spew | |
2017-04-30 | lib9p: allow rewinding in 9pfile directories | cinap_lenrek | |
2017-04-29 | sshfs: add -r and -M options | aiju | |
2017-04-28 | add sshfs(4) manpage | aiju | |
2017-04-27 | add blit(1) manpage | aiju | |
2017-04-24 | ssh: make number of retries configurable | aiju | |
2017-04-24 | libavl: fix documentation | spew | |
2017-04-24 | ssh(1): refer to thumbprint(6) for the sshthumbs file format | cinap_lenrek | |
2017-04-23 | libsec: sha256 support for thumbprint files, use it in ssh as well | cinap_lenrek | |
initThumbprints() now takes an application tag argument so x509 and ssh can coexist. the thumbprint entries can now hold both sha1 and sha256 hashes. okThumbprint() now takes a len argument for the hash length used. the new function okCertificate() hashes the certificate with both and checks for any matches. on failure, okCertificate() returns 0 and sets error string. we also check for include loops now in thumbfiles, limiting the number of includes to 8. | |||
2017-04-23 | ssh(1): add $home/lib/thumbfile to FILE section | cinap_lenrek | |
2017-04-23 | ssh: document thumbfile options | cinap_lenrek | |
2017-04-23 | ssh(1): add bugs section about host not being authenticated | cinap_lenrek | |
2017-04-23 | ssh(1): initial documentation, needs examples for authentication | cinap_lenrek | |
2017-04-22 | replica: use libavl for avl tree implementation | spew | |
2017-04-22 | libavl: lookup can return the closest match | spew | |
2017-04-21 | rsa(8): fix description of rsa2ssh (now, ssh2 format only) | cinap_lenrek | |
2017-04-17 | rsa2ssh: drop support for version 1 key format | cinap_lenrek | |
2017-04-03 | fix typo in 9p(2) manpage | aiju | |
2017-04-02 | pc(1): fix memory leak and add clog() function | aiju | |
2017-03-25 | games/galaxy: parallelize gravitational force calculations | spew | |
Once the Barnes-Hut tree is constructed, the gravitational force calculations can be done in parallel by dividing the bodies up between a number of procs. | |||
2017-03-22 | plumb(2): Fix typo in description of Plumbdelattr (thanks sam-d) | spew | |
2017-03-22 | webfs(4): timeout is in milliseconds not seconds (thanks sam-d) | spew | |
2017-03-18 | diskparts(8), prep(8): add edisk in NAME section | cinap_lenrek | |
2017-03-18 | mus(1): fix manpage references | cinap_lenrek | |
2017-03-18 | vga(3): complete list of vga controllers and software cursors | cinap_lenrek | |
2017-03-18 | devmouse: refactor screen blanking logic | cinap_lenrek | |
devmouse controls the screen blanking timeout, so move the code there avoiding cross calls between modules. the only function that needs to be provided is blankscreen(), which gets called with drawlock locked. the blank timeout is set thru /dev/mousectl now, so kernels without devvga can set it. blanking now only happens while /dev/mouse is read. so this avoids accidentally blanking the screen on cpu servers that do not have a mouse to unblank it. |