summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-04-22Merge pull request #7 from kapoarbo/masterCharles Forsyth
acme (Edit X u): remove unconditional warning
2024-04-22Merge pull request #12 from dboddie/update-freetypeCharles Forsyth
Update FreeType to the latest code
2024-04-22Merge pull request #16 from pete/multiple-small-fixesCharles Forsyth
Multiple small fixes
2024-04-22Merge pull request #14 from pete/add-whoisCharles Forsyth
Add whois(1)
2024-04-22Merge pull request #15 from pete/add-uniq-cCharles Forsyth
Add uniq -c
2024-04-16Don't force JIT on charon.Pete
This keeps charon from failing to load img.b on systems where JIT is disabled. I suspect this is another holdover from when Inferno ran on systems that were tiny in the 90s.
2024-04-16Assume UTF-8 from the X11 clipboard.Pete
This stops a lot of error spew from libxwhichever: almost everything's UTF-8, Plan 9 won.
2024-04-16A patch from ipn.caerwyn.net to use RGB24 by default for image display.Pete
Gets rid of all the dithering.
2024-04-16Fix a crash in libdraw; I think this came from qrstuv.Pete
2024-04-16Add Roman miles (romanmile) to /lib/units.Pete
2024-04-16Remove the commented-out buggy lines.Pete
2024-04-16Fix a bug in directory listings in httpd.Pete
2024-04-16Add a few newer file types to httpd.suff.Pete
In particular, not serving .css as text/css was confusing to some browsers. squash
2024-04-16Make the wm/memory display more readable by converting uniformly.Pete
2024-04-16Document whois(1).Pete
2024-04-16An implementation of whois.Pete
2024-04-16Update the man page for uniq(1).Pete
2024-04-16Add -c to uniq.Pete
(Match Plan 9.)
2024-02-28Added the usual missing files.David Boddie
2024-02-28Removed libfreetype fork, replacing it with a submodule and some ↵David Boddie
Inferno-specific files. Retained the license documents and updated the header files.
2023-10-26Merge pull request #3 from dboddie/fix-string-module-check-in-gunzipCharles Forsyth
Fixed String module load check in gunzip.
2023-10-24acme (Edit X u): remove unconditional warningkapoarbo
2023-10-03Merge pull request #6 from dboddie/fix-outlstring-in-tcCharles Forsyth
Update outlstring function in tc to match others
2023-04-24Merge pull request #4 from NicolasCARPi/patch-1Charles Forsyth
Remove reference to Bitbucket in README.md
2023-04-24Remove reference to BitbucketNicolas CARPi
2023-03-19Fixed String module load check in gunzip.David Boddie
2022-02-19Merge pull request #1 from gitppc/masterCharles Forsyth
fixed typo that was causing syntax error and ./makemk.sh compilation failure
2022-02-18fixed typo resulting in ./makemk.sh failureelias howell
2021-12-18Merged in fix-outlstring-in-tc (pull request #14)David Boddie
Update outlstring function in tc to match others Approved-by: Charles Forsyth
2021-10-11remove duplicate vflag definitionCharles Forsyth
2021-10-11make message more helpfulCharles Forsyth
2021-10-11allow vflag > 1Charles Forsyth
2021-09-30Update outlstring function in tc to match othersDavid Boddie
2021-09-30install tl as tl not 5lCharles Forsyth
2021-09-30remove mention of long obsolete IE pluginCharles Forsyth
2021-03-23update NOTICEs and other legal bits to reflect changes to Plan 9's licence ↵Charles Forsyth
and confirm MIT-template for Inferno base and revisions
2021-03-12remoove obsolete noticeCharles Forsyth
2021-03-12remove obsolete NOTICE prototypes. add lib/legal/README to explain why the ↵Charles Forsyth
other files are there
2021-03-12remove obsolete NOTICE files superceded by /NOTICECharles Forsyth
2021-03-12remove All rights reserved. fix copyright statements. remove Styx trademarkCharles Forsyth
2021-03-11remove obsolete All rights reserved. fix email addressCharles Forsyth
2021-03-07Merged in feature/NetBSD/arm (pull request #13)Valery Ushakov
NetBSD/arm support Approved-by: Charles Forsyth
2021-03-07Merged in utils-riscv (pull request #10)Richard Miller
RISC-V compiler and linker corrections Approved-by: Charles Forsyth
2021-03-07Merged in namespace_noauth (pull request #9)Sergey Ryabin
Add -A mount option for namespace(6) Approved-by: Charles Forsyth
2021-03-07remove LGPL licences and convert remaining GPL/LGPL licences including ↵Charles Forsyth
/NOTICE to MIT form
2021-02-03Merged in Linux/spim (pull request #11)David Boddie
Fixes for spim architecture running on a Linux host Approved-by: Charles Forsyth
2021-02-03Merged in bugfix/parseman-space-escapes (pull request #12)Valery Ushakov
lib/parseman: recognize all troff space escapes Approved-by: Charles Forsyth
2021-01-05lib/parseman: recognize all troff space escapesValery Ushakov
parsetext() recognizes escapes for \& zero-width space, and \| narrow space (1/6 em-space in troff). Recognize also \^ - half-narrow space (1/12 em) and ignore it (found e.g. in dd(1)), and \0 - digit-width space and map it to plain space character (found e.g. in text(9)).
2021-01-04NetBSD/arm: segflush - use mprotect to add PROT_EXECValery Ushakov
ARM has separate read and execute protection bits so after writing out JIT code we need to make it executable.
2021-01-04NetBSD/arm: disable pax mprotect restrictions for emuValery Ushakov
ARM has separate read and execute protection bits so after writing out JIT code we need to make it executable with mprotect(2), but PAX wouldn't let us by default. Mark the emu binary so that this restriction is lifted. On other machines where this is not an issue set PAXCTL to a no-op.