blob: 645da6daaf25ccca600c75ffd598d8adeeb63b53 [file] [log] [blame]
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -08001#
2# Copyright (C) 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
19#
20# To update:
21#
22
Elliott Hughesa67bfec2015-04-05 10:14:19 -070023# git remote add toybox https://github.com/landley/toybox.git
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080024# git fetch toybox
25# git merge toybox/master
26# mm -j32
27# # (Make any necessary Android.mk changes and test the new toybox.)
28# git push aosp HEAD:master # Push directly, avoiding gerrit.
29# git push aosp HEAD:refs/for/master # Push to gerrit.
30#
31# # Now commit any necessary Android.mk changes like normal:
32# repo start post-sync .
33# git commit -a
34
35
Elliott Hughes361d6ab2015-03-13 14:49:52 -070036#
37# To add a toy:
38#
39
40# make menuconfig
41# # (Select the toy you want to add.)
42# make clean && make # Regenerate the generated files.
43# # Edit LOCAL_SRC_FILES below to add the toy.
44# # If you just want to use it as "toybox x" rather than "x", you can stop now.
45# # If you want this toy to have a symbolic link in /system/bin, add the toy to ALL_TOOLS.
46
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080047include $(CLEAR_VARS)
48
49LOCAL_SRC_FILES := \
50 lib/args.c \
51 lib/dirtree.c \
52 lib/getmountlist.c \
53 lib/help.c \
Elliott Hughes584c6542015-05-15 16:26:09 -070054 lib/interestingtimes.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080055 lib/lib.c \
56 lib/llist.c \
57 lib/net.c \
58 lib/portability.c \
59 lib/xwrap.c \
60 main.c \
Elliott Hughes0e6551a2015-03-28 12:49:31 -070061 toys/android/getenforce.c \
Elliott Hughes85cda1a2015-04-08 10:53:59 -070062 toys/android/getprop.c \
Elliott Hughes0e6551a2015-03-28 12:49:31 -070063 toys/android/load_policy.c \
Elliott Hughese0953ac2015-04-07 14:51:26 -070064 toys/android/restorecon.c \
Elliott Hughescfbb8c12015-03-23 17:53:47 -070065 toys/android/runcon.c \
Elliott Hughes0e6551a2015-03-28 12:49:31 -070066 toys/android/setenforce.c \
Elliott Hughes4b39d132015-04-07 17:42:12 -070067 toys/android/setprop.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080068 toys/lsb/dmesg.c \
69 toys/lsb/hostname.c \
70 toys/lsb/killall.c \
71 toys/lsb/md5sum.c \
72 toys/lsb/mknod.c \
73 toys/lsb/mktemp.c \
74 toys/lsb/mount.c \
75 toys/lsb/pidof.c \
76 toys/lsb/seq.c \
77 toys/lsb/sync.c \
78 toys/lsb/umount.c \
79 toys/other/acpi.c \
Elliott Hughes14862232014-12-18 17:55:47 -080080 toys/other/base64.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080081 toys/other/blkid.c \
82 toys/other/blockdev.c \
83 toys/other/bzcat.c \
Elliott Hughesbf65a2e2015-02-09 12:14:46 -080084 toys/other/chcon.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080085 toys/other/chroot.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080086 toys/other/clear.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080087 toys/other/dos2unix.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080088 toys/other/fallocate.c \
89 toys/other/free.c \
90 toys/other/freeramdisk.c \
91 toys/other/fsfreeze.c \
92 toys/other/help.c \
93 toys/other/ifconfig.c \
94 toys/other/inotifyd.c \
95 toys/other/insmod.c \
96 toys/other/losetup.c \
97 toys/other/lsattr.c \
98 toys/other/lsmod.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -080099 toys/other/lsusb.c \
100 toys/other/makedevs.c \
101 toys/other/mkswap.c \
102 toys/other/modinfo.c \
103 toys/other/mountpoint.c \
104 toys/other/nbd_client.c \
105 toys/other/netcat.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800106 toys/other/partprobe.c \
107 toys/other/pivot_root.c \
108 toys/other/pmap.c \
109 toys/other/printenv.c \
110 toys/other/pwdx.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800111 toys/other/readlink.c \
112 toys/other/realpath.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800113 toys/other/rev.c \
114 toys/other/rfkill.c \
115 toys/other/rmmod.c \
116 toys/other/setsid.c \
117 toys/other/stat.c \
118 toys/other/swapoff.c \
119 toys/other/swapon.c \
120 toys/other/switch_root.c \
121 toys/other/sysctl.c \
122 toys/other/tac.c \
123 toys/other/taskset.c \
124 toys/other/timeout.c \
125 toys/other/truncate.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800126 toys/other/usleep.c \
127 toys/other/vconfig.c \
128 toys/other/vmstat.c \
129 toys/other/which.c \
130 toys/other/yes.c \
Elliott Hughes3c3e83a2014-12-16 20:18:05 -0800131 toys/pending/dd.c \
Elliott Hughes88db4122015-02-18 17:32:09 -0800132 toys/pending/expr.c \
Elliott Hughes9aaeff32015-01-14 12:26:10 -0800133 toys/pending/hwclock.c \
Elliott Hughes53a43da2014-12-11 17:05:54 -0800134 toys/pending/more.c \
Elliott Hughes5d2ad232015-03-19 22:52:46 -0700135 toys/pending/pgrep.c \
Elliott Hughes3c3e83a2014-12-16 20:18:05 -0800136 toys/pending/netstat.c \
137 toys/pending/route.c \
Elliott Hughes88db4122015-02-18 17:32:09 -0800138 toys/pending/tar.c \
Elliott Hughes3c3e83a2014-12-16 20:18:05 -0800139 toys/pending/top.c \
Elliott Hughes347e42b2015-01-13 18:45:44 -0800140 toys/pending/tr.c \
Elliott Hughes3c3e83a2014-12-16 20:18:05 -0800141 toys/pending/traceroute.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800142 toys/posix/basename.c \
143 toys/posix/cal.c \
144 toys/posix/cat.c \
145 toys/posix/chgrp.c \
146 toys/posix/chmod.c \
147 toys/posix/cksum.c \
148 toys/posix/cmp.c \
149 toys/posix/comm.c \
150 toys/posix/cp.c \
Elliott Hughesbfa8d062015-02-05 10:02:55 -0800151 toys/posix/cpio.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800152 toys/posix/cut.c \
153 toys/posix/date.c \
154 toys/posix/df.c \
155 toys/posix/dirname.c \
156 toys/posix/du.c \
157 toys/posix/echo.c \
158 toys/posix/env.c \
159 toys/posix/expand.c \
160 toys/posix/false.c \
161 toys/posix/find.c \
162 toys/posix/grep.c \
163 toys/posix/head.c \
164 toys/posix/id.c \
165 toys/posix/kill.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800166 toys/posix/ln.c \
167 toys/posix/ls.c \
168 toys/posix/mkdir.c \
169 toys/posix/mkfifo.c \
170 toys/posix/nice.c \
171 toys/posix/nl.c \
172 toys/posix/nohup.c \
173 toys/posix/od.c \
174 toys/posix/paste.c \
175 toys/posix/patch.c \
Elliott Hughes0e6551a2015-03-28 12:49:31 -0700176 toys/posix/printf.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800177 toys/posix/pwd.c \
178 toys/posix/renice.c \
179 toys/posix/rm.c \
180 toys/posix/rmdir.c \
Elliott Hughes347e42b2015-01-13 18:45:44 -0800181 toys/posix/sed.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800182 toys/posix/sleep.c \
183 toys/posix/sort.c \
184 toys/posix/split.c \
185 toys/posix/strings.c \
186 toys/posix/tail.c \
187 toys/posix/tee.c \
188 toys/posix/time.c \
189 toys/posix/touch.c \
190 toys/posix/true.c \
191 toys/posix/tty.c \
192 toys/posix/uname.c \
193 toys/posix/uniq.c \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800194 toys/posix/wc.c \
195 toys/posix/xargs.c \
196
197LOCAL_CFLAGS += \
Elliott Hughes4b39d132015-04-07 17:42:12 -0700198 -std=c99 \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800199 -Os \
200 -Wno-char-subscripts \
201 -Wno-sign-compare \
Elliott Hughes0e6551a2015-03-28 12:49:31 -0700202 -Wno-string-plus-int \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800203 -Wno-uninitialized \
204 -Wno-unused-parameter \
Elliott Hughesd3533982015-01-15 15:04:19 -0800205 -funsigned-char \
206 -ffunction-sections -fdata-sections \
207 -fno-asynchronous-unwind-tables \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800208
Elliott Hughesec275a92015-04-18 14:03:18 -0700209toybox_version := $(shell git -C $(LOCAL_PATH) rev-parse --short=12 HEAD 2>/dev/null)-android
210LOCAL_CFLAGS += -DTOYBOX_VERSION='"$(toybox_version)"'
211
Elliott Hughes4b39d132015-04-07 17:42:12 -0700212LOCAL_CLANG := true
213
214LOCAL_SHARED_LIBRARIES := libcutils libselinux
Elliott Hughes76115632014-12-16 09:14:47 -0800215
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800216LOCAL_MODULE := toybox
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800217
Elliott Hughes0598a132015-05-16 06:28:13 +0000218# dupes: dd df du ls mount renice
Elliott Hughesd67730e2015-05-02 11:38:41 -0700219# useless?: freeramdisk fsfreeze install makedevs mkfifo nbd-client
Elliott Hughesbf65a2e2015-02-09 12:14:46 -0800220# partprobe pivot_root pwdx rev rfkill switch_root tty vconfig
Elliott Hughes5eec03a2015-02-09 14:09:49 -0800221# prefer BSD netcat instead?: nc netcat
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800222# prefer efs2progs instead?: blkid chattr lsattr
223
224ALL_TOOLS := \
225 acpi \
226 basename \
227 blockdev \
228 bzcat \
229 cal \
Elliott Hughes1e0e5ea2015-01-14 10:40:22 -0800230 cat \
Elliott Hughes76115632014-12-16 09:14:47 -0800231 chcon \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800232 chgrp \
Elliott Hughes5c7cca02014-12-11 12:12:59 -0800233 chmod \
Elliott Hughes6ee70fc2015-01-15 13:41:34 -0800234 chown \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800235 chroot \
236 cksum \
Elliott Hughes03275a82014-11-22 22:56:47 -0800237 clear \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800238 comm \
Elliott Hughesd3533982015-01-15 15:04:19 -0800239 cmp \
Elliott Hughes6b4d05c2014-12-16 16:15:47 -0800240 cp \
Elliott Hughesbfa8d062015-02-05 10:02:55 -0800241 cpio \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800242 cut \
Elliott Hughes9aaeff32015-01-14 12:26:10 -0800243 date \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800244 dirname \
Elliott Hughesc99e20b2014-11-26 11:38:43 -0800245 dmesg \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800246 dos2unix \
247 echo \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800248 env \
249 expand \
Elliott Hughes88db4122015-02-18 17:32:09 -0800250 expr \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800251 fallocate \
Elliott Hughes03275a82014-11-22 22:56:47 -0800252 false \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800253 find \
254 free \
Elliott Hughes9250c952014-12-24 11:29:44 -0800255 getenforce \
Elliott Hughes85cda1a2015-04-08 10:53:59 -0700256 getprop \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800257 groups \
258 head \
259 hostname \
Elliott Hughes9aaeff32015-01-14 12:26:10 -0800260 hwclock \
Elliott Hughesc8fa5ee2015-01-16 19:27:31 -0800261 id \
Elliott Hughes4f060a32015-01-14 11:07:28 -0800262 ifconfig \
Elliott Hughes123aecf2015-01-14 11:00:47 -0800263 inotifyd \
Elliott Hughes6a646ef2014-11-24 11:41:35 -0800264 insmod \
Elliott Hughes95211ea2014-12-04 20:09:44 -0800265 kill \
Elliott Hughes0e6551a2015-03-28 12:49:31 -0700266 load_policy \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800267 ln \
268 logname \
269 losetup \
Elliott Hughes6a646ef2014-11-24 11:41:35 -0800270 lsmod \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800271 lsusb \
272 md5sum \
Elliott Hughesd13bf6a2014-12-16 15:17:17 -0800273 mkdir \
Elliott Hughes0a0435c2014-12-11 18:34:09 -0800274 mknod \
Elliott Hughes620bc1a2014-11-24 16:12:40 -0800275 mkswap \
Elliott Hughes79984b42015-02-09 12:16:39 -0800276 mktemp \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800277 modinfo \
Elliott Hughes53a43da2014-12-11 17:05:54 -0800278 more \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800279 mountpoint \
Elliott Hughesdbcacc62014-12-16 19:18:43 -0800280 mv \
Elliott Hughes5f9893b2014-12-23 09:12:18 -0800281 netstat \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800282 nice \
283 nl \
Elliott Hughes9f989412014-11-25 17:00:40 -0800284 nohup \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800285 od \
286 paste \
287 patch \
Elliott Hughes5d2ad232015-03-19 22:52:46 -0700288 pgrep \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800289 pidof \
Elliott Hughes5d2ad232015-03-19 22:52:46 -0700290 pkill \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800291 pmap \
Elliott Hughes68e18cd2014-11-24 15:36:51 -0800292 printenv \
Elliott Hughes0e6551a2015-03-28 12:49:31 -0700293 printf \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800294 pwd \
Elliott Hughes8f7bc7a2014-11-26 15:21:03 -0800295 readlink \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800296 realpath \
Elliott Hughese0953ac2015-04-07 14:51:26 -0700297 restorecon \
Elliott Hughesf5275f92014-12-16 16:22:32 -0800298 rm \
Elliott Hughesd4a6d662014-12-16 15:26:53 -0800299 rmdir \
Elliott Hughes6a646ef2014-11-24 11:41:35 -0800300 rmmod \
Elliott Hughes84974ec2015-03-30 11:25:18 -0700301 route \
Elliott Hughescfbb8c12015-03-23 17:53:47 -0700302 runcon \
Elliott Hughes347e42b2015-01-13 18:45:44 -0800303 sed \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800304 seq \
Elliott Hughes9250c952014-12-24 11:29:44 -0800305 setenforce \
Elliott Hughes176eae92015-04-07 20:36:38 -0700306 setprop \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800307 setsid \
308 sha1sum \
Elliott Hughes62cf8d62014-11-24 15:23:04 -0800309 sleep \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800310 sort \
311 split \
312 stat \
313 strings \
Elliott Hughes620bc1a2014-11-24 16:12:40 -0800314 swapoff \
315 swapon \
Elliott Hughes85368282014-11-24 14:53:36 -0800316 sync \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800317 sysctl \
318 tac \
319 tail \
Elliott Hughes88db4122015-02-18 17:32:09 -0800320 tar \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800321 taskset \
322 tee \
323 time \
324 timeout \
Elliott Hughes5eec03a2015-02-09 14:09:49 -0800325 touch \
Elliott Hughes347e42b2015-01-13 18:45:44 -0800326 tr \
Elliott Hughes03275a82014-11-22 22:56:47 -0800327 true \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800328 truncate \
Elliott Hughescc6fc172015-04-02 21:27:05 -0700329 umount \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800330 uname \
331 uniq \
332 unix2dos \
Elliott Hughes10bd49e2014-11-21 14:53:43 -0800333 usleep \
Elliott Hughes20800602014-11-25 17:25:05 -0800334 vmstat \
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800335 wc \
336 which \
337 whoami \
338 xargs \
339 yes \
340
Ying Wang331b22d2014-11-24 12:42:09 -0800341# Install the symlinks.
342LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toybox $(TARGET_OUT)/bin/$(t);)
Elliott Hughesd8d2d3c2014-11-20 10:39:27 -0800343
Ying Wang331b22d2014-11-24 12:42:09 -0800344include $(BUILD_EXECUTABLE)