Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-10 | Update www/roadmap.html with Android progress. | Elliott Hughes | |
Not much progress this week. Just route and umount. Also remove a stray reference to load_policy which already switched. Also remove an outdated claim that Android logging is done in the kernel. It's been in userspace for a while now. | |||
2015-04-10 | Tweak .gitignore. | Rob Landley | |
2015-04-08 | Tweak README | Rob Landley | |
2015-04-08 | Update multiplexer help text for --version | Rob Landley | |
2015-04-08 | Revert last mdev commit because it copied code out of a GPLv2 program. | Rob Landley | |
Guys, you CANNOT COPY CODE FROM BUSYBOX. I don't care if I was the initial author of that file, other people have touched it since. I know I added "pending" because I couldn't keep up with code review in realtime and stuff was getting lost, so we needed a place to park things before they underwent the full dorodango process. I also know none of the binaries I distribute has anything in pending enabled. But dude, if I'm going to find stuff like this I have to start reviewing the code BEFORE applying it to pending, and we all know where that leads. Please don't do this again. | |||
2015-04-07 | Adding --version broke ./toybox command list. (Oops.) | Rob Landley | |
2015-04-05 | Announce switch to git. | Rob Landley | |
2015-04-05 | Add --version to multiplexer. | Rob Landley | |
Can't think of a better place to stick the actual version info than a #define at the top of main. Makefile and toys.h are equally awkward, querying git tags wouldn't work if building a release tarball... watch me forget to update this when cutting a release. | |||
2015-04-05 | Bite the bullet and switch over to git. | Rob Landley | |
2015-04-04 | To ensure that toybox can be installed alongside busybox without | Paul Barker | |
confusing update-alternatives, the paths of the links installed by toybox should match those installed by busybox. This is accomplished by changing the flags of a few tools within toybox. | |||
2015-04-04 | Another in-progress ps snapshot. | Rob Landley | |
2015-04-03 | Add readfileat() to lib | Rob Landley | |
2015-04-03 | ps checkpoint du jour. Does not work yet. | Rob Landley | |
2015-04-02 | Redoing ps from scratch. Random checkpoint that probably doesn't even compile. | Rob Landley | |
Checking in a stopping point where I figured out what I did wrong, before changing it. | |||
2015-03-29 | Add head test for -123. | Rob Landley | |
2015-03-29 | Fix head bug pointed out by felix janda (recent -123 code broke first file ↵ | Rob Landley | |
argument of -n). | |||
2015-03-28 | Fix sed bug David Halls hit trying to compile libiconv. | Rob Landley | |
2015-03-28 | Fix printf bug (%.s should be %.0s not %s) reported by Isabella Parakiss. | Rob Landley | |
2015-03-28 | Fix an obvious typo in Makefile. | Elliott Hughes | |
2015-03-28 | update the Android section of roadmap.html | Elliott Hughes | |
Four obsolete tools were removed from Android, and runcon moved to toybox. | |||
2015-03-27 | Promote setenforce to android. | Rob Landley | |
2015-03-27 | Cleanup setenforce. | Rob Landley | |
2015-03-27 | Promote getenforce. | Rob Landley | |
2015-03-27 | Cleanup getenforce. | Rob Landley | |
2015-03-27 | Flag to make llvm shut up about a broken warning. | Rob Landley | |
2015-03-27 | tail: add old -123 support and comment out #-f until it's actually implemented. | Rob Landley | |
2015-03-27 | Promote load_policy to android. | Rob Landley | |
2015-03-27 | Minor cleanup of load_policy. | Rob Landley | |
2015-03-26 | Explain the craptacular nature of kconfig, and the plan to replace it. | Rob Landley | |
2015-03-25 | Fix toybox build with C99 compilers | Bernhard Rosenkr?nzer | |
toybox "make menuconfig" currently fails to build if the compiler is in C99 mode (clang 3.6 and gcc 5.0 snapshots default to C99 mode, you can also reproduce the failure with older gcc by using 'make menuconfig HOSTCC="gcc -std=gnu99"'). The problem is that inline semantics changed in C99, and kconf_id_lookup's inline-ness depends on C89 semantics there. | |||
2015-03-24 | Implement load_policy. | Elliott Hughes | |
Note that this is a case where Android's tool isn't the same as the usual tool. Ours takes an explicit file containing the policy to be loaded. restorecon is at least command-line compatible, but the implementation is all in Android's libselinux where there's a selinux_android_restorecon function. | |||
2015-03-23 | Promote runcon to android (and add an android menu). | Rob Landley | |
2015-03-23 | Trivial runcon cleanups. | Rob Landley | |
2015-03-23 | Add runcon(1). | Elliott Hughes | |
2015-03-23 | add missing space in dd output | Elliott Hughes | |
Also, coreutils says "s" instead of "seconds". POSIX specifies the format of the previous two lines, but doesn't even mention this line. | |||
2015-03-23 | Tweak of Elliott Hughes's fix for an off by one error in human_readable | Rob Landley | |
(137 returned "137 KB".) | |||
2015-03-23 | Update the Android section of the roadmap. | Elliott Hughes | |
I've removed the reference to fs_mgr, since that's really part of vold rather than a subset of mount(1), and I've removed the reference to ifconfig because we're already using the toybox ifconfig and the reference in this document to the Android command that it referred to (netcfg) was already removed. | |||
2015-03-21 | Another bug from David Halls: find -exec wasn't consuming its argument when ↵ | Rob Landley | |
it didn't activate. test: find . -name README -exec echo one '{}' ';' -or -exec echo two '{}' ';' | |||
2015-03-21 | install -D bugfix from David Halls. | Rob Landley | |
(I tweaked some comment text while I was there.) | |||
2015-03-21 | Patch from David Halls to fix mac/ios portability issue. | Rob Landley | |
2015-03-19 | Add -123 support to head (suggested by Elliott Hughes). | Rob Landley | |
2015-03-18 | mdev : add hotplugin feature | Hyejin Kim | |
As internal needs, Ranjan Kumar (ranjankumar.bth at gmail.com) added hotplug feature into mdev. | |||
2015-03-16 | Fix mount -a segfault without -O, reported by Janus Troelsen. | Rob Landley | |
2015-03-16 | Rename a function to better describe what it does. | Rob Landley | |
2015-03-15 | I added error handling code in write_rotate(). | Hyejin Kim | |
I think that it is better to check tf->logfd before doing truncate()/write() and getting error. | |||
2015-03-14 | More ps cleanup, mostly refactoring. | Rob Landley | |
2015-03-13 | Minor ps refactoring. | Rob Landley | |
2015-03-13 | Clean up sort help text. | Rob Landley | |
Use tabs for option indent and don't have -g show up in menu (TOYBOX_FLOAT is the decision). | |||
2015-03-12 | Switch nsenter to default y. | Rob Landley | |
2015-03-12 | Implement shred -u and switch to default y in defconfig. | Rob Landley | |