Reputation: 10954
busybox
provides some, but not all, useful binary utilities for Android. For example, there are no pstree
or file
. To use these utilities, one must cross-compile them with ARM as target.
Question:
Are there any other sources of Android binary utilities?
Is there any toolchain for cross-compiling binary utilities on Android (possibly with a guide)? And how to deal with the library issues?
Thanks.
Upvotes: 0
Views: 487
Reputation: 1482
Opkg is a lightweight package management system. It is written in C and resembles apt/dpkg in operation. It is intended for use on embedded Linux devices and is used in this capacity in the OpenEmbedded and OpenWrt projects.
The above-mentioned botbrew uses it for packages.
Upvotes: 0
Reputation: 26
use BotBrew ! Binary utilities for Android http://botbrew.com/ download = > https://play.google.com/store/apps/details?id=com.inportb.botbrew
Upvotes: 1
Reputation: 23556
Android Open Source Project has everything you need to recompile any binary.
Upvotes: 0