Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-08 | xchdir: show the specific failure. | Elliott Hughes | |
2019-01-08 | FreeBSD doesn't #define IUTF8 in termios.h, add workaround to portability.h. | Rob Landley | |
2019-01-08 | FreeBSD will use the getmntinfo API as with Apple | Ed Maste | |
2019-01-08 | Ed Maste says freebsd hasn't got sys/xattr.h, so move it to portability.h. | Rob Landley | |
2019-01-08 | Add FreeBSD endianness support | Ed Maste | |
2018-12-27 | Make poke() alignment-agnostic. | Rob Landley | |
2018-12-26 | Teach the argument plumbing how to do -@ for mkfs.vfat | Rob Landley | |
2018-12-23 | Add grep --color | Rob Landley | |
2018-12-17 | Only set FLAGS_NODASH when arguments didn't have a dash. | Rob Landley | |
This (eventually) lets "ps ax" and "ps -ax" behave differently. | |||
2018-12-14 | Add xrename() | Rob Landley | |
2018-12-10 | nc: add IPv6 support. | Josh Gao | |
2018-12-07 | macOS: fix code using POSIX 2008 `st_[acm]tim` fields. | Elliott Hughes | |
Hopefully they'll fix this properly at some point, but until then... | |||
2018-12-07 | Forgot to check the portability.? changes. (Oops.) | Rob Landley | |
2018-12-04 | macOS: move getmountlist.c functions into portability.c. | Elliott Hughes | |
I think this was the preferred option for this code that turns out to be very different on Linux vs BSD. I don't yet have a BSD implementation, and I'm not likely to have chance to work on one in the near future, so this just #ifdefs it out for macOS right now. With this (and a suitably minimal .config), toybox builds for macOS out of the box. | |||
2018-11-30 | macOS: remove unnecessary <stdio.h> workarounds. | Elliott Hughes | |
These were added in macOS 10.7 in 2011-07, so the seven year rule applies... | |||
2018-11-30 | macOS: work around header idiosyncracies. | Elliott Hughes | |
2018-11-30 | macOS: fix endian macros for macOS. | Elliott Hughes | |
I've also flipped the `#if` because `#ifdef` feels more naturally readable than #ifndef when there's also a `#else`. (I've preserved the oddness of the clearenv declaration being here, because there isn't currently a more suitable `#ifdef __APPLE__` to move it too. Later...) | |||
2018-11-29 | Remove an extra #include <string.h> | Rob Landley | |
2018-11-29 | macOS: remove glibc 2.10 workarounds. | Elliott Hughes | |
The only part of this I actually need for macOS is to remove __APPLE__ from the getdelim/getline workaround, but if we're following the usual "seven year rule", glibc 2.10 is dead to us anyway, and we should just remove all of this. | |||
2018-11-28 | macOS: there's no <features.h> on the Mac. | Elliott Hughes | |
2018-11-28 | macOS: replace local strnstr with strcasestr. | Elliott Hughes | |
bionic, glibc, macOS, and musl all have strcasestr (see http://man7.org/linux/man-pages/man3/strstr.3.html). macOS (via BSD) has a strnstr that does what strnstr sounds like it should do by analogy with strnlen and strncpy. So we at least need to rename strnstr, but it probably makes more sense just to switch to strcasestr instead. | |||
2018-11-28 | macOS: noreturn. | Elliott Hughes | |
The macOS libc headers use `__attribute__((noreturn))` rather than `__attribute__((__noreturn__))`, so toybox's `noreturn` macro trips them up. Since we already have a variety of uses of `__attribute__` that aren't guarded in this way, let's do the same here. | |||
2018-10-28 | Rename interestingtimes.c to tty.c. (It's the "not curses" code.) | Rob Landley | |
2018-10-27 | Dirtree shouldn't put a "No" in front of filename for "permission denied". | Rob Landley | |
2018-10-22 | Don't call TIOCGWINSZ on non-ttys | Nick Kralevich | |
Prior to calling TIOCGWINSZ on stdin/stdout/stderr, check to see if the file descriptor is a tty. Calling TIOCGWINSZ on a non-tty doesn't make any sense. Calling TIOCGWINSZ on a non-tty is mildly problematic for systems like Android where strict ioctl filtering is in place, and generates SELinux audit noise. Strict ioctl filtering for non-filesystem fifo_files (eg pipe() or pipe2() generated pipes) was enabled in Android in commit https://android-review.googlesource.com/c/platform/system/sepolicy/+/792599 | |||
2018-10-21 | Make ./top -d .1234567890m work. | Rob Landley | |
2018-10-21 | Add % to lib/args.c (long time in milliseconds), add xmillitime(), redo | Rob Landley | |
xparsetime() not to need floating point, adjust callers. | |||
2018-10-21 | Move start_redraw() to lib/ and have ps.c (top) use it. | Rob Landley | |
2018-10-20 | The static NDK fix broke the dynamic NDK build. | Rob Landley | |
2018-10-10 | Fix static Android NDK build. | Rob Landley | |
2018-10-10 | Rewrite of watch. | Rob Landley | |
2018-10-10 | Trivial speedup to format_iso_time(), teach parsetime() leading garbage != 0. | Rob Landley | |
2018-10-10 | Add xsignal_flags() and more consistently use xsignal() instead of signal(). | Rob Landley | |
xsignal() wraps sigaction() giving control of SA_RESTART behavior and such. | |||
2018-10-07 | Fix non-android ps build. | Rob Landley | |
2018-10-07 | libcutils isn't in the NDK. | Elliott Hughes | |
Bug: https://github.com/landley/toybox/issues/43 | |||
2018-10-04 | Make it possible to build the AOSP .config against glibc. | Elliott Hughes | |
It's possible that we should just pull setprop back out of toybox to live with getprop in system/core/, but this lets us build the same toybox configuration for device and host in AOSP. (Longer term we'd like to use host bionic, but if we enable this we can start experimenting on the tobyox side before the bionic side is finished.) | |||
2018-09-16 | Nommu systems want to _exit() after vfork when exec fails, but should do ↵ | Rob Landley | |
cleanup ala fflush(0) after a normal exec() failure. | |||
2018-09-15 | Fix glibc build after 013876f067a11ebfcf47789921b376e7bf3bf5b8. | Elliott Hughes | |
/usr/include/unistd.h:626:15: error: conflicting types for 'confstr' | |||
2018-09-09 | Variable data needs to go at the end. | Rob Landley | |
2018-09-08 | Tweaks to make building with Android NDK's llvm happier. | Rob Landley | |
2018-08-21 | Use \033 instead of \e gcc extension. | Rob Landley | |
2018-08-17 | Make microcom use set_terminal() and move speed setting into set_terminal(). | Rob Landley | |
2018-08-07 | Forgot to check in the deflate header change, and pending shouldn't default y. | Rob Landley | |
2018-08-03 | xgetrandom: use getrandom result if it succeeds | Patrick Oppenlander | |
2018-08-02 | Move pending/compress.c to lib/deflate.c, first pass at genericizing it. | Rob Landley | |
2018-07-19 | Tweak/add some comments. | Rob Landley | |
2018-07-13 | Fix typo in a macro name | Konst Mayer | |
2018-07-08 | Fix division by zero errors and double summary in ping. | Rob Landley | |
2018-07-06 | Bionic ships newer libc with older kernels, so Android needs to fallback at | Rob Landley | |
runtime for ENOSYS. | |||
2018-07-04 | Add xgetrandom() with probe for new system call (else open/read /dev/{,u}random) | Rob Landley | |