Android-x86
Fork
Donation

  • R/O
  • HTTP
  • SSH
  • HTTPS

external-toybox: List of commits

external/toybox


RSS
Rev. Tiempo Autor
ba146a2 2018-01-12 01:42:50 Tom Cherry

Reland: Stop building getprop am: 69a95fdec1 am: d7c52c377e
am: e08ff514e5

Change-Id: I6fe989fcc7df1999942f9678b26a16a06d5741fa

e08ff51 2018-01-12 01:39:47 Tom Cherry

Reland: Stop building getprop am: 69a95fdec1
am: d7c52c377e

Change-Id: Ifd38cac9b26a298466ea20bed58286fce50ed20e

d7c52c3 2018-01-12 01:37:19 Tom Cherry

Reland: Stop building getprop
am: 69a95fdec1

Change-Id: I64aba811de33f1916a2388e37384e25f453632aa

69a95fd 2018-01-11 04:15:51 Tom Cherry

Reland: Stop building getprop

We've replaced this with our own C++ version to support the new
property info parsing.

Bug: 36001741
Test: Compared getprop results with toybox getprop
Change-Id: I022e1ee63635547e2705d43c818579a68f01b872

e1d68f5 2018-01-11 01:54:11 Rob Landley

Move make help text out of Makefile.

f00c177 2018-01-10 17:23:53 android-build-team Robot

Snap for 4535700 from e626193bc281a7ee478f705a8dcfc6d16a0f88ea to pi-release

Change-Id: I6d92e7a7089b7953260411ad98b541c45b18d56c

e626193 2018-01-10 05:19:01 Tom Cherry

Revert "Stop building getprop" am: 9810b2abf3 am: 850204ccee
am: 0b5277a86b

Change-Id: Ib2e53e9376a093a944180c4a61cea6628a830145

0b5277a 2018-01-10 04:30:32 Tom Cherry

Revert "Stop building getprop" am: 9810b2abf3
am: 850204ccee

Change-Id: Ieb821aceb39d0492e8d27eaae8b68abc1f85a781

36beb6a 2018-01-10 02:15:58 Elliott Hughes

Add the gzip/gunzip/zcat tests I wrote for toolbox gzip/gunzip/zcat.

Bringing the zlib-based gzip/gunzip/zcat over to toybox is a problem for
another day, but at least the tests are easy...

(These tests pass with TEST_HOST and on the toolbox versions, but the
toybox toys are in pending and very broken.)

850204c 2018-01-10 00:09:54 Tom Cherry

Revert "Stop building getprop"
am: 9810b2abf3

Change-Id: Iece1fef3ae04ff459a313cbc1799bc2ac3a4ab15

795c4c6 2018-01-09 15:42:01 Tom Cherry

Stop building getprop am: 2a7219cdf2 am: c4663a7f65
am: 0db1b4d74a

Change-Id: I4f6ef249acd6cfc3302f5449fcc70bf0d30af7c7

0db1b4d 2018-01-09 15:22:02 Tom Cherry

Stop building getprop am: 2a7219cdf2
am: c4663a7f65

Change-Id: I97735314feb8ac7d185f790022e3d3a12f62f8ba

9810b2a 2018-01-09 09:27:45 Tom Cherry

Revert "Stop building getprop"

This reverts commit 2a7219cdf2fa1b9bd080f9377ed5f2cf993600a3.

Change-Id: I24118e45c9f7c99699959b58c2ccbd4a0fd9414e

c4663a7 2018-01-09 07:36:58 Tom Cherry

Stop building getprop
am: 2a7219cdf2

Change-Id: I55446a9ec8890afafe5426845896a73cae07e121

b432aee 2018-01-07 06:43:17 Rob Landley

Move millitime() into lib.c.

2a7219c 2018-01-05 03:14:59 Tom Cherry

Stop building getprop

We've replaced this with our own C++ version to support the new
property info parsing.

Bug: 36001741
Test: Compared getprop results with toybox getprop
Change-Id: Iba71544e0d8eb2c0d683fdd244fa7ccb87294de4

73690e9 2018-01-04 03:53:46 Rob Landley

Cleanup pass on gzip.c.

a9e05fe 2018-01-02 07:32:13 Rob Landley

Promote logger, and fluff up help text a bit.

359888a 2018-01-02 07:25:18 Rob Landley

Cleanup logger.c, and move the facilitynames/prioritynames SYSLOG_NAMES
stuff syslog.h does into lib.c and portability.h

3ba0a28 2018-01-02 02:24:48 Rob Landley

xphung on github said: "config2help currently doesn't work on OS X, it
terminates parsing of Config.in at first blank line. This is because
getdelim() in portability.c returns -1 whenever the line comprises only
a single linefeed character. Fixing this was a trivial change to two lines
(see below), and config2help now works on OS X but I haven't regression
tested this on any other commands which rely on getdelim()"

736afba 2017-12-30 08:19:02 Rob Landley

Promote iconv.

78c3fcd 2017-12-30 07:43:38 Rob Landley

Cleanup iconv.

Implement -c, fix endless loop when illegal char happens with
!outleft (don't need to check errno, just in == toybuf), refill
buffer each time (less efficient handling of illegal chars but never
have to worry about how long constitutes a valid sequence in unknown
encoding).

Fix input longer than 2k (memmove() has src/dest switched, second time through
loop in starts at offset inleft...) Made it start at beginning every time.

Switch iconv_open() error msg to show to/from and errno (rather than
hardwired english text).

12a0b40 2017-12-28 02:23:43 Rob Landley

Promote setfattr

d46e332 2017-12-28 02:21:21 Rob Landley

Minor cleanup on setfattr.c

215a6af 2017-12-27 13:28:10 Elliott Hughes

Add xxd -i (and xxd -ri).

The original xxd doesn't support -r with -i. The original also outputs
"unsigned char name[] = { ... };" for input other than stdin, but that
actually makes it less useful --- many languages support array
initializers, but far fewer support that exact declaration syntax.

Also fix the -c range checking and defaulting: ><= in the argument string
only works for floating point arguments.

Bug: http://b/64711851

70a6c55 2017-12-27 11:45:14 Elliott Hughes

Fix xargs -0 with -n.

Also make -0 and -E mutually exclusive (rather than just ignore -E
with -0).

Bug: https://github.com/landley/toybox/issues/78

4335501 2017-12-25 02:21:12 Elliott Hughes

Add fmt.

A very simple implementation of fmt, good enough for my daily use of !!fmt
in vi to reflow checkin comments like this.

a64bc1e 2017-12-24 17:32:40 android-build-team Robot

Snap for 4517567 from 9bc5cb239e25685a0b17faa2f13374d0a1df1b2b to pi-release

Change-Id: I225b5d1be7f1263872b079133e98fbec6bc6ec3e

17bcad9 2017-12-23 05:56:37 Rob Landley

Redo namestopid to handle more cases.

9bc5cb2 2017-12-22 11:06:48 Elliott Hughes

Merge remote-tracking branch 'toybox/master' into HEAD am: 5c2683335f am: dc37511388
am: b4c219ec96

Change-Id: I3b81616c95ffb2300028733734dc3705ffc3a54d

Show on old repository browser