diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-04-04 18:26:32 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2014-04-04 18:28:14 +0200 |
commit | 5c9336924f33408cf30747298968be6b0123213f (patch) | |
tree | e84af69b6dbf967c9a4122c6d855f956f6678533 /toolbox/Android.mk | |
parent | Allow building of an OEM friendly TWRP (diff) | |
download | android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar.gz android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar.bz2 android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar.lz android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar.xz android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.tar.zst android_bootable_recovery-5c9336924f33408cf30747298968be6b0123213f.zip |
Diffstat (limited to '')
-rw-r--r-- | toolbox/Android.mk | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/toolbox/Android.mk b/toolbox/Android.mk index afe66a3a8..73868976a 100644 --- a/toolbox/Android.mk +++ b/toolbox/Android.mk @@ -20,6 +20,68 @@ ifeq ($(TWHAVE_SELINUX), true) load_policy endif +ifeq ($(TW_USE_TOOLBOX), true) + TOOLS += \ + mount \ + cat \ + ps \ + kill \ + ln \ + insmod \ + rmmod \ + lsmod \ + ifconfig \ + setconsole \ + rm \ + mkdir \ + rmdir \ + getevent \ + sendevent \ + date \ + wipe \ + sync \ + umount \ + notify \ + cmp \ + dmesg \ + route \ + hd \ + dd \ + df \ + watchprops \ + log \ + sleep \ + renice \ + printenv \ + smd \ + chmod \ + chown \ + newfs_msdos \ + netstat \ + ioctl \ + mv \ + schedtop \ + top \ + iftop \ + id \ + uptime \ + vmstat \ + nandread \ + ionice \ + touch \ + lsof \ + du \ + md5 \ + clear \ + swapon \ + swapoff \ + mkswap \ + readlink + ifneq ($(TWHAVE_SELINUX), true) + TOOLS += ls + endif +endif + LOCAL_SRC_FILES := \ toolbox.c \ $(patsubst %,%.c,$(TOOLS)) |