aboutsummaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)Author
2021-06-12Check in the .htaccess file that triggers the server side includesRob Landley
for the nav menu.
2021-06-02Remove unbalanced parentheses and repeated transition.Rob Landley
2021-05-26Better link to LP64 documentation.Rob Landley
2021-05-22Freenode->libera.chat ala ethereal->wireshark.Rob Landley
https://boingboing.net/2021/05/19/freenode-irc-staff-quit-after-new-owner-seizes-control.html https://lwn.net/Articles/856543/
2021-05-190.8.5 release0.8.5Rob Landley
2021-01-18Remove redundant blake2 mention and move base32 into the implemented list.Rob Landley
2020-12-08Better conversion of toycans-big.jpg to png. (Just rotate 90 degrees.)Rob Landley
2020-11-29true is mentioned twiceFiras Khalil Khana
2020-11-25Minor tweaks.Rob Landley
2020-10-24Tweak release notes.0.8.4Rob Landley
2020-10-24Past time for 0.8.4Rob Landley
2020-10-24Just the FAQ's, ma'am.Rob Landley
2020-09-23cksum and hostid are already implementedFiras Khalil Khana
Both of [cksum](https://github.com/landley/toybox/blob/master/toys/posix/cksum.c) and [hostid](https://github.com/landley/toybox/blob/master/toys/example/hostid.c) are already implemented, unless you're planning on removing them.
2020-09-20Fix a typoFiras Khalil Khana
Fix a small typo, should be `compress` not `compess`.
2020-08-20Minor roadmap intro tweak.Rob Landley
2020-08-07People have been having trouble finding the toybox web page (despite beingRob Landley
the first google hit for "android toybox"), and want toybox --help to mention it. I was referred to https://github.com/landley/toybox/issues/50 So add a URL to toybox --help. While I was there, make unrecognized commands (like toybox -?) suggest "toybox --help", move the install instructions to the FAQ page (with a second link from toybox --help), and generally tighten up the help text. Also, "toybox -*" is no longer a synonym for --long. Oh, and I fixed some build dependencies when Config.in changes.
2020-06-16Zach Van Rijn wanted his handle capitalized.Rob Landley
2020-06-02Remove getevent from roadmap: it's an android board bringup tool built byRob Landley
running a python script against the kernel headers, more or less a hardware debugging tool that doesn't really benefit from being in-tree nor does it need to ship on deployed systems. (And it should probably be a kernel module.)
2020-05-29Fluff out the FAQ some more and flush pending README changes.Rob Landley
Yes, I need to convert to README.md, it's on the todo list...
2020-05-25Tweak roadmap so status.html is a bit more current.Rob Landley
2020-05-15How to cross compile with 2 compilers and 3 libc.Rob Landley
2020-05-13URL moved and the automatic redirect triggers https shenanigans.Rob Landley
2020-05-13FAQ polishing.Rob Landley
2020-05-13New FAQ, "how do I build a working Linux system with toybox".Rob Landley
2020-05-11Update release procedure checklist.Rob Landley
2020-05-11Release notes for 0.8.3.Rob Landley
2020-05-11For the record, my release procedure checklist.Rob Landley
2020-05-06Minor doc tweaks.Rob Landley
2020-04-15Add "other packages" section to roadmap explaining what Linux From ScratchRob Landley
packages toybox commands provide partial or complete replacements for.
2020-04-10Update documentation to talk about make root instead of the old external build.Rob Landley
2020-03-02Update the LP64 section.Rob Landley
2019-12-28Fiddle with docs a bit.Rob Landley
2019-10-24Mention that posix-2008 moved to a different URL, and the RFCs from IETF.Rob Landley
2019-10-18Release 0.8.20.8.2Rob Landley
2019-10-14Freshen up first half of roadmap.Rob Landley
2019-09-05roadmap: more Android/AOSP updates.Elliott Hughes
Update source links, add a bit more rationale.
2019-08-30Update roadmap (what android is using out of pending).Rob Landley
2019-07-20Update design page to answer somebody's question.Rob Landley
2019-06-03news.html: fix HTML, and be accurate about where `tail -f` was tested.Elliott Hughes
2019-05-29Release 0.8.1.0.8.1Rob Landley
2019-05-18Fix a dead link, add link to OpenBSD suggested template license,Rob Landley
and record Kirk McKusick's email for posterity. (I posted it to the mailing list when it happened, but this is more obvious...)
2019-04-18Why time based releases? (About the first half of it, anyway.)Rob Landley
2019-04-18Given dreamhost's tendency to repeatedly delete the mailing listRob Landley
web archives, link to another web archive as a backup.
2019-03-11Add a code style note.Rob Landley
2019-02-24A document I wrote ages ago about how mount works under the covers.Rob Landley
2019-02-23Bumper typo cleanup.Elliott Hughes
Inspired by some of the small patches that have gone by recently. Limited to only things found in `generated/help.h`, plus a wider cleanup for the more common "milisecond" typo.
2019-02-15Fix typos: e.g. change "cannonical" to "canonical".Jason Spiro
2019-02-11Add SPDX identifier, and link to a wikipedia page.Rob Landley
2019-02-08Update news.html for 0.8.0 release.0.8.0Rob Landley
2019-01-22Fix sigjmp_buf/jmp_buf mismatches.Elliott Hughes
Broke the bionic build: external/toybox/toys/net/netcat.c:188:37: error: incompatible pointer types assigning to 'sigjmp_buf *' (aka 'long (*)[33]') from 'jmp_buf *' (aka 'long (*)[32]') [-Werror,-Wincompatible-pointer-types] if (toys.optflags&FLAG_L) NOEXIT(child = XVFORK()); ^~~~~~~~~~~~~~~~~~~~~~~~ external/toybox/lib/lib.h:375:19: note: expanded from macro 'NOEXIT' #define NOEXIT(x) WOULD_EXIT(_noexit_res, x) ^~~~~~~~~~~~~~~~~~~~~~~~~~ external/toybox/lib/lib.h:367:16: note: expanded from macro 'WOULD_EXIT' toys.rebound = &_noexit; \ ^ ~~~~~~~~ 1 error generated.