summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-28fortunes: no. -- ftrvxmtrxstanley lieber
2014-12-28aux/vga: remove -s option, move scaling to the size string itselfftrvxmtrx
2014-12-27ircrc: use aux/trampoline or tlsclient for connections, add -T flag for tlsmischief
previously ircrc dialed through /net itself and resolved ips on its own. this prevented the use of an ip address, and also prevented use of ipv6. now you can use an ip, or a dns name that resolves to ipv6. the -T flag is also added to use tlsclient for encrypted connections.
2014-12-26mergeftrvxmtrx
2014-12-26aux/vga: scaling modes for VESAftrvxmtrx
2014-12-26vga, vesa: revert. this needs to be in aux/vga insteadftrvxmtrx
2014-12-26vga, vesa: scaling modesftrvxmtrx
At least on some NVIDIA cards the default scaling mode makes black borders visible on all sides, even on native resolution. This patch adds a generic "scaling MODE" command to vgactl and adds support for it on VESA through NVIDIA VBE OEM extension. It hasn't been tested on any other video cards, but shouldn't break anything as the scaling mode is only set on write to vgactl.
2014-12-26vga, vesa: scaling modesftrvxmtrx
2014-12-26socksd: revert back, previous commit broke UdpAssociate requestcinap_lenrek
should probably figure out a better way to get public ip address on a interface.
2014-12-26libip: skip ipv6 loopback address (thanks mischief)cinap_lenrek
2014-12-26socksd: dont use myipaddr() for announcing addresscinap_lenrek
2014-12-25getfcr: change getfcr/setfcr to use VFPcinap_lenrek
2014-12-25zynq: only tmpmap() while splhi(), remove unneeded coherence() after ↵cinap_lenrek
tmpunmap(), splhi() in l2free() we have to call tmpmap() with interrupts disabled as the map is a per cpu and a interrupt can preempt us while we where commited to use a entry but *before* we wrote it! tmpunmap() already calls coherence() before flushpg() so it is not needed after tmpunmap(). splhi() in l2free() isnt needed as l2free() is always called with interrupts disabled from mmuswitch() and mmurelease().
2014-12-25zynq: dont do install target by default in the mkfilecinap_lenrek
2014-12-24zynq: fpsave() and fpclear() both need to disable the fpucinap_lenrek
fpsave needs to disable the fpu! otherwise we won't catch the mathtrap() in the kernel or when context switching to another process that will attempt to use it.
2014-12-24zynq: active.machs = 1cinap_lenrek
2014-12-24zynq: set mainmem->maxsize so kernel malloc() wont fail after 4MBcinap_lenrek
2014-12-245l: remove -f flag and add -F flag to disable VFP code generationcinap_lenrek
almost nobody uses FPA anymore, so make VFP the default but provide -F flag to disable it.
2014-12-24zynq: fix kernel configuration so it buildscinap_lenrek
2014-12-24nusb/serial: fix nusb/serial hang with ftdicinap_lenrek
have to create process, not a thread in ftdi code so main process can exit after posting fs service.
2014-12-24added zynq kernelaiju
2014-12-23fortunes: if(~ $i (seek _nsec)) { # untested so far - geoffstanley lieber
2014-12-23rc-httpd(8): add HISTORY to man pagestanley lieber
2014-12-22pc, pc64, xen: change return type of intrdisable() to voidcinap_lenrek
intrdisable() will always be able to unregister the interrupt now, so there is no reason to have it return an error value. all drivers except uart8250 already assumed it to never fail and theres no need to maintain that complexity.
2014-12-22sdvirtio: provide enable() and disable() functions so it can be switched offcinap_lenrek
2014-12-22pc, pc64: fix intrdisable() to remove the Vctl entry even tho we can't ↵cinap_lenrek
disable the interrupt on apic
2014-12-22sdvirtio: move common "queue i/o and wait" code into vqio() function, handle ↵cinap_lenrek
notify suppression
2014-12-22pc, pc64, xen: simplify #P/irqalloccinap_lenrek
2014-12-22pc, pc64: include PCArch.id in #P/archctl simplify #P/ioalloc read handlercinap_lenrek
2014-12-22ape: add fprint %z format (thanks Ori_B)cinap_lenrek
2014-12-21ip: exclude "don't fragment" bit from ipv4 reassembly testcinap_lenrek
other operating systems always set the "don't fragment" bit in ther outgoing ipv4 packets causing us to unnecesarily call ip4reassemble() looking for a fragment reassembly queue. the change excludes the "don't fragment" bit from the test so we now call ip4reassemble() only when the "more fragmens" bit is set or a fragment offset other than zero is given. this optimization was discovered from akaros.
2014-12-20pci(8): document vid/did argumentmischief
2014-12-20pci(8): fix usagemischief
2014-12-20mergemischief
2014-12-20pci: import pci script and updated database from 9atommischief
2014-12-21tee: get rid of openf[100] array and just dup() filedescriptors to 3+[0..n-1]cinap_lenrek
2014-12-21mergecinap_lenrek
2014-12-21kernel: avoid inconsistent reads in /proc/#/fd and /proc/#/nscinap_lenrek
to allow bytewise access to /proc/#/fd, the contents of the file where recreated on each call. if fd's had been closed or reassigned between the reads, the offset would be inconsistent and a read could start off in the middle of a line. this happens when you cat /proc/#/fd file of a busy process that mutates its filedescriptor table. to fix this, we now return one line record at a time. if the line fits in the read size, then this means the next read will always start at the beginning of the next line record. we remember the consumed byte count in Chan.mrock and the current record in Chan.nrock. (these fields are free to usefor non-directory files) if a read comes in and the offset is the same as c->mrock, we do not need to regenerate the file and just render the next c->nrock's record. for reads smaller than the line count, we have to regenerate the content up to the offset and the race is still possible, but this should not be the common case. the same algorithm is now used for /proc/#/ns file, allowing a simpler reimplementation and getting rid of Mntwalk state strcture.
2014-12-21mergeftrvxmtrx
2014-12-21sam: '^' and '_' cmds; same as '<' and '|' except that stdout goes to the ↵ftrvxmtrx
command window
2014-12-20flate: fix wrong adler32() length calculation (thanks qrstuv)cinap_lenrek
2014-12-19vblade: fix code so #pragma pack isnt neededcinap_lenrek
2014-12-19add erik quanstros vblade utilitycinap_lenrek
2014-12-19pc64: enable devaoe and sdloop in kernel configurationcinap_lenrek
2014-12-19sdloop: hardcode Enotup[] string to avoid devaoe dependencycinap_lenrek
2014-12-19sdaoe: allow aoedev= shorthand for id!lun -> id!#æ/aoe/luncinap_lenrek
we cannot type æ character in the bootloader console, so allow the shorthand syntax id!lun which gets translated to id!#æ/aoe/lun.
2014-12-19pc, pc64: adjust mpshutdown() comment to reflect the current statecinap_lenrek
2014-12-19pc, pc64: untangle acpireset() from mpshutdown()cinap_lenrek
mpshutdown() used to call acpireset() making it impossible to build a kernel without archacpi. now, mpshutdown() is a helper function that only shuts down the application processors that gets used from mpreset() and acpireset(). the generic machine reset code in exported by devarch's archreset() function that is called by mpreset() and from acpireset() as a fallback. so the code duplication that was in mpshutdown() is avoided.
2014-12-18hgfs(4): add SOURCE to man page (thanks, spew)stanley lieber
2014-12-18fortunes: oh really.stanley lieber