Android-x86
Fork

  • R/O
  • HTTP
  • SSH
  • HTTPS

external-busybox: コミット一覧

external/busybox


RSS
Rev. 日時 作者
27de5df kitkat-x86 android-x86-4.4-r1 android-x86-4.4-r2 android-x86-4.4-r3 2014-01-08 22:09:29 Chih-Wei Huang

enable more applets

* chvt
* deallocvt
* fgconsole
* findfs
* hwclock
* lspci
* nmeter
* openvt
* powertop
* rdate
* setkeycodes
* smemcap
* switch_root
* tty

777dd5b 2014-01-08 11:29:50 Chih-Wei Huang

android-x86: fix building warnings of kitkat-x86

f5d708b 2014-01-08 11:07:20 Chih-Wei Huang

lsusb: add -v option to show bDeviceClass and DEVNAME

31f3ac4 2014-01-08 11:06:49 Chih-Wei Huang

xlseek: large file support

This fixes the issue that mke2fs can't format large disks.

b8b0451 2013-11-24 21:55:16 Tanguy Pruvot

build: ignore selibs pkgconfig on android builds

This cause errors and is not required

Change-Id: If6cc6fb1595e83fac452d8a28cb4b8d250dff06d

5afc00b 2013-11-24 19:53:15 Tanguy Pruvot

update config, change version suffix

Change-Id: I3455772c65bbd2e1102ec1f2d9c55f4d91b702d8

8a7b2c3 2013-11-24 19:42:41 Tanguy Pruvot

android: add a script to regenerate prebuilt config

since x86 CROSS_COMPILER removal, it can be hard to do that properly

Change-Id: I6011e3b4dac5b5e670385df4812baf32f2e5ebc5

eddb834 2013-11-24 19:19:30 Denys Vlasenko

fstrim: use new-style config/kbuild/applet snippets; trim help text

function old new delta
packed_usage 29546 29520 -26

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Change-Id: I758c91f2054d1f2876fc1446f8f0afd8bffd2611

bb19d25 2013-11-24 19:04:22 Bernhard Reutner-Fischer

fstrim: sync with busybox master (now an official applet)

fstrim: Needs to fire at the mp, not bd

It's a filesystem thing from this perspective.

fstrim: Indicate failure on error

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

Change-Id: Icffb851cbe1895523e67e5ff18c67f9109a46a28

25e89dc 2013-11-05 12:43:38 Ricardo Cerqueira

Fix building on 4.4

Change-Id: I85030de3dea5f2d1a187cf2ced9517b3c820266a

b0e9a50 2013-10-07 08:43:03 Denys Vlasenko

bunzip2: fix off-by-one check

stage3-armv7a_hardfp-20130209.tar.bz2, 149189948 bytes long,
md5sum b29ce23312e14eb15a143377d4a38473, was failing to unpack.

It so happened that this file has a run which exactly fills
the 90k buffer. The check was "size >= bufsize", apparently
it has to be ">".

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

fix for bug https://jira.cyanogenmod.org/browse/CYAN-1896
Change-Id: I4e43fa2b84f2c00e627f75082d2250b4b4dff08e

2b99526 2013-10-06 05:33:20 Trevor Drake

[x86] Changes and Additions to fix broken x86 build

Add missing syscalls to android/libc/arch-x86/syscalls

Remove #undef HAVE_GETLINE from platform.h
Fixes definition conflict warnings for x86 but is also
suitable for arm as bionic has had a getline implementation for a
while now

Remove hardcoded CONFIG_CROSS_COMPILER_PREFIX from .config-full
and .config-minimal. This is now appended to .config as part of
the prepare target in Android.mk

It appears no other changes are needed to other files such as
bbconfigopts.h etc as these are autogenerated when make prepare
is run.

Android.mk:
Added missing syscalls source to BUSYBOX_SRC_FILES when
TARGET_ARCH=x86.
Added appending of the CONFIG_CROSS_COMPILER_PREFIX to the .config
file based on the TARGET_ARCH

Change-Id: I4f550757b3209b852cd5a017e88dce50678e5734

3f2a90a 2013-08-01 05:17:34 Steven Luo

mktemp: go back to using mktemp() for mktemp -u

The -u option to mktemp(1) is inherently unsafe, and the fact it exists
in the first place is probably a mistake. That said, it exists, and if
we want to support it, we should try to minimize the risk of using it.

The current code attempts to work around a build failure caused by
passing --fatal-warnings to the linker by using mkstemp() and unlinking
the resulting file, which eliminates the need for an attacker to guess
the filename (he can instead watch the temporary file directory using
inotify or some other similar mechanism). It's better instead to use
mktemp() (which at least forces the attacker to guess what "XXXXXX" was
replaced with) and tell the linker to live with the warning.

Change-Id: I01e0901db39821b7d1ce06145d1199ecd929e689

ececd8c 2013-08-01 05:16:07 Steven Luo

Don't treat link-time warnings as errors

We want to use mktemp(3) in the mktemp applet (it's unsafe, but so is
that particular option of the applet, and mktemp() is the least unsafe
way of implementing that option), but forcing the linker to error out on
warnings breaks the build in this case.

Change-Id: I6e976e9b467d2241be4bb0f3628991d098c492f0

c7dcb61 2013-08-01 04:43:02 Tanguy Pruvot

mktemp: unlink mkstemp alternative to (unsafe) dry-run option

Change-Id: I19eeca4e8a915418527630105405c4d74d542ead

a9a9b98 2013-07-26 05:24:13 Ricardo Cerqueira

mktemp: switch to mkstemp

The compiler warning was breaking the build due to Werror, and it's
an easy fix

Change-Id: Ic109aa017c02596e9cf0aae3c6f82d72849b90cf

7b91e6a 2013-07-26 05:21:27 Ricardo Cerqueira

Fix syscalls on 4.3's bionic

Change-Id: Ibaeaa30ce88880338cd0236791f7db4cac8289b5

eb80a7e 2013-07-04 09:38:29 Tanguy Pruvot

Merge remote branch 'busybox_net/1_21_stable' into cm-10.1

93cce13 2013-07-01 08:17:01 Tanguy Pruvot

Apply post-1.21.0 patches, bump version to 1.21.1

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

update config for 1.21.1
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>

Change-Id: Ibfd9124cbc9be744709dfe07a1a5b30df545e806

75671e1 2013-07-01 08:15:59 Oliver Metz

volume_id: fix ntfs attribute search

len is declared as uint32_t but le16_to_cpu macro is used

Signed-off-by: Oliver Metz <oliver.metz@gmx.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Change-Id: Ibc342fcf970d98003fac15c7008b87622e38647f

e73f3c1 2013-06-30 00:00:22 Denys Vlasenko

Apply post-1.21.0 patches, bump version to 1.21.1

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

c2b8b7a 2013-05-13 09:35:30 Lasse Collin

xz: support concatenated .xz streams

function old new delta
xz_dec_reset - 77 +77
unpack_xz_stream 2402 2397 -5

Signed-off-by: Lasse Collin <lasse.collin@tukaani.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

d363446 2013-05-05 02:47:01 Leonid Lisovskiy

xz: fix put_unaligned_{l,b}e32

Signed-off-by: Leonid Lisovskiy <lly.dev@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Sync code with busybox master fix
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>

823694d 2013-02-27 04:26:41 Tanguy Pruvot

Busybox 1.21.0 squashed commit for jellybean

Change-Id: I423c7fc1254050c6495126b1b18dd33af07fed6b
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>

6e205db 2013-02-27 04:26:41 Evan McClain

Build with -fno-strict-aliasing

Change-Id: I4117a526cdc93c96a9b7102727f5b33542810990
Signed-off-by: Evan McClain <aeroevan@gmail.com>

68d8b6d 2013-02-22 23:59:39 Tanguy Pruvot

update config (fstrim addition)

Change-Id: I5c872afbcd071d389d0db3f10862677c08212e2c

886ed40 2013-01-29 04:33:17 Eugene San (eugenesan)

Add fstrim support to restore NAND/eMMC write performance. fstrim applet is a port from util-linux.

"Trimming" your NAND/eMMC storage will restore the write performance back to normal
after having slow down issues on sequential write and random write due to usage over time.

Good reading on subject: http://forum.xda-developers.com/showthread.php?t=1971852

Change-Id: I0ba903cb7248b288152736f2e3392a5bdbe77ba3

64406a9 2013-01-21 16:51:23 Denys Vlasenko

Bump version to 1.21.0

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

0cfba07 2013-01-21 16:28:37 Denys Vlasenko

fix testsuite false positive

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

4609f47 2013-01-21 09:22:12 Denys Vlasenko

mdev: fix mode of dir1 in =dir1/dir2/file rule

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

旧リポジトリブラウザで表示