blob: 43a893dea5122c111df02d36577ce1343585b05a [file] [log] [blame]
Ethan Yonkerc798c9c2015-10-09 11:15:26 -05001#
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
17ifneq ($(wildcard external/toybox/Android.mk),)
18
19ifeq ($(TW_USE_TOOLBOX), true)
20
21LOCAL_PATH := external/toybox
22
23#
24# To update:
25#
26
27# git remote add toybox https://github.com/landley/toybox.git
28# git fetch toybox
29# git merge toybox/master
30# mm -j32
31# # (Make any necessary Android.mk changes and test the new toybox.)
32# git push aosp HEAD:master # Push directly, avoiding gerrit.
33# git push aosp HEAD:refs/for/master # Push to gerrit.
34#
35# # Now commit any necessary Android.mk changes like normal:
36# repo start post-sync .
37# git commit -a
38
39
40#
41# To add a toy:
42#
43
44# make menuconfig
45# # (Select the toy you want to add.)
46# make clean && make # Regenerate the generated files.
47# # Edit LOCAL_SRC_FILES below to add the toy.
48# # If you just want to use it as "toybox x" rather than "x", you can stop now.
49# # If you want this toy to have a symbolic link in /system/bin, add the toy to ALL_TOOLS.
50
51include $(CLEAR_VARS)
52
53LOCAL_SRC_FILES := \
54 lib/args.c \
55 lib/dirtree.c \
56 lib/getmountlist.c \
57 lib/help.c \
58 lib/interestingtimes.c \
59 lib/lib.c \
60 lib/llist.c \
61 lib/net.c \
62 lib/portability.c \
63 lib/xwrap.c \
64 main.c \
65 toys/android/getenforce.c \
66 toys/android/getprop.c \
67 toys/android/load_policy.c \
68 toys/android/restorecon.c \
69 toys/android/runcon.c \
70 toys/android/setenforce.c \
71 toys/android/setprop.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050072 toys/lsb/hostname.c \
73 toys/lsb/killall.c \
74 toys/lsb/md5sum.c \
75 toys/lsb/mknod.c \
76 toys/lsb/mktemp.c \
77 toys/lsb/mount.c \
78 toys/lsb/pidof.c \
79 toys/lsb/seq.c \
80 toys/lsb/sync.c \
81 toys/lsb/umount.c \
82 toys/other/acpi.c \
83 toys/other/base64.c \
84 toys/other/blkid.c \
85 toys/other/blockdev.c \
86 toys/other/bzcat.c \
87 toys/other/chcon.c \
88 toys/other/chroot.c \
89 toys/other/clear.c \
90 toys/other/dos2unix.c \
91 toys/other/fallocate.c \
92 toys/other/free.c \
93 toys/other/freeramdisk.c \
94 toys/other/fsfreeze.c \
95 toys/other/help.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050096 toys/other/inotifyd.c \
97 toys/other/insmod.c \
98 toys/other/losetup.c \
99 toys/other/lsattr.c \
100 toys/other/lsmod.c \
101 toys/other/lsusb.c \
102 toys/other/makedevs.c \
103 toys/other/mkswap.c \
104 toys/other/modinfo.c \
105 toys/other/mountpoint.c \
106 toys/other/nbd_client.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500107 toys/other/partprobe.c \
108 toys/other/pivot_root.c \
109 toys/other/pmap.c \
110 toys/other/printenv.c \
111 toys/other/pwdx.c \
112 toys/other/readlink.c \
113 toys/other/realpath.c \
114 toys/other/rev.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500115 toys/other/rmmod.c \
116 toys/other/setsid.c \
117 toys/other/stat.c \
118 toys/other/swapoff.c \
119 toys/other/swapon.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500120 toys/other/sysctl.c \
121 toys/other/tac.c \
122 toys/other/taskset.c \
123 toys/other/timeout.c \
124 toys/other/truncate.c \
125 toys/other/usleep.c \
126 toys/other/vconfig.c \
127 toys/other/vmstat.c \
128 toys/other/which.c \
129 toys/other/yes.c \
130 toys/pending/dd.c \
131 toys/pending/expr.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500132 toys/pending/more.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500133 toys/pending/route.c \
134 toys/pending/tar.c \
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500135 toys/pending/tr.c \
136 toys/pending/traceroute.c \
137 toys/posix/basename.c \
138 toys/posix/cal.c \
139 toys/posix/cat.c \
140 toys/posix/chgrp.c \
141 toys/posix/chmod.c \
142 toys/posix/cksum.c \
143 toys/posix/cmp.c \
144 toys/posix/comm.c \
145 toys/posix/cp.c \
146 toys/posix/cpio.c \
147 toys/posix/cut.c \
148 toys/posix/date.c \
149 toys/posix/df.c \
150 toys/posix/dirname.c \
151 toys/posix/du.c \
152 toys/posix/echo.c \
153 toys/posix/env.c \
154 toys/posix/expand.c \
155 toys/posix/false.c \
156 toys/posix/find.c \
157 toys/posix/grep.c \
158 toys/posix/head.c \
159 toys/posix/id.c \
160 toys/posix/kill.c \
161 toys/posix/ln.c \
162 toys/posix/ls.c \
163 toys/posix/mkdir.c \
164 toys/posix/mkfifo.c \
165 toys/posix/nice.c \
166 toys/posix/nl.c \
167 toys/posix/nohup.c \
168 toys/posix/od.c \
169 toys/posix/paste.c \
170 toys/posix/patch.c \
171 toys/posix/printf.c \
172 toys/posix/pwd.c \
173 toys/posix/renice.c \
174 toys/posix/rm.c \
175 toys/posix/rmdir.c \
176 toys/posix/sed.c \
177 toys/posix/sleep.c \
178 toys/posix/sort.c \
179 toys/posix/split.c \
180 toys/posix/strings.c \
181 toys/posix/tail.c \
182 toys/posix/tee.c \
183 toys/posix/time.c \
184 toys/posix/touch.c \
185 toys/posix/true.c \
186 toys/posix/tty.c \
187 toys/posix/uname.c \
188 toys/posix/uniq.c \
189 toys/posix/wc.c \
Hashcode57332152016-12-20 01:30:49 +0100190 toys/posix/xargs.c
191
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500192ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 23; echo $$?),0)
193# there are some conflicts here with AOSP-7.[01] and CM-14.[01]
Hashcode57332152016-12-20 01:30:49 +0100194# the following items have been removed for compatibility
195# ifconfig, netcat, netstat, rfkill, switch_root
196LOCAL_STATIC_LIBRARIES := libcrypto_static
197
198LOCAL_C_INCLUDES += \
199 external/boringssl/include \
200 bionic/libc/dns/include
201
202LOCAL_SRC_FILES += \
203 lib/linestack.c \
204 lib/password.c \
205 toys/other/flock.c \
206 toys/other/hwclock.c \
207 toys/other/ionice.c \
208 toys/other/lspci.c \
209 toys/other/readahead.c \
210 toys/other/reset.c \
211 toys/other/uptime.c \
212 toys/other/xxd.c \
213 toys/pending/arp.c \
214 toys/pending/diff.c \
Hashcode57332152016-12-20 01:30:49 +0100215 toys/pending/lsof.c \
216 toys/pending/telnet.c \
217 toys/pending/test.c \
218 toys/pending/watch.c \
219 toys/pending/xzcat.c \
220 toys/posix/ps.c \
221 toys/posix/ulimit.c
222
Ethan Yonker95e80072017-08-24 21:45:50 -0500223ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 25; echo $$?),0)
224# Android 8.0 had some tools in different paths
225LOCAL_SRC_FILES += \
226 toys/pending/dmesg.c \
227 toys/net/ftpget.c
228else
229LOCAL_SRC_FILES += \
230 toys/lsb/dmesg.c \
231 toys/pending/ftpget.c
232endif
233
Hashcode57332152016-12-20 01:30:49 +0100234# Account for master branch changes pulld into CM14.1
235ifneq ($(CM_BUILD),)
236LOCAL_SRC_FILES += \
237 toys/android/log.c \
238 toys/android/sendevent.c \
239 toys/android/start.c \
240 toys/net/ifconfig.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500241 toys/net/microcom.c \
Hashcode57332152016-12-20 01:30:49 +0100242 toys/net/netcat.c \
243 toys/net/netstat.c \
244 toys/net/rfkill.c \
245 toys/net/tunctl.c \
246 toys/other/setfattr.c \
247 toys/pending/chrt.c \
248 toys/pending/fdisk.c \
249 toys/pending/getfattr.c \
250 toys/pending/host.c \
251 toys/pending/resize.c \
252 toys/posix/file.c
253else
254LOCAL_SRC_FILES += \
Ethan Yonker95e80072017-08-24 21:45:50 -0500255 toys/other/switch_root.c
256ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 25; echo $$?),0)
257# Android 8.0 had some tools in different paths
258LOCAL_SRC_FILES += \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500259 toys/android/log.c \
260 toys/android/sendevent.c \
261 toys/android/start.c \
Ethan Yonker95e80072017-08-24 21:45:50 -0500262 toys/net/ifconfig.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500263 toys/net/microcom.c \
Ethan Yonker95e80072017-08-24 21:45:50 -0500264 toys/net/netcat.c \
265 toys/net/netstat.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500266 toys/net/rfkill.c \
267 toys/net/tunctl.c \
268 toys/pending/chrt.c \
269 toys/pending/getfattr.c \
270 toys/pending/modprobe.c \
271 toys/pending/setfattr.c \
272 toys/posix/file.c \
273 toys/posix/uudecode.c \
274 toys/posix/uuencode.c
275LOCAL_SHARED_LIBRARIES += liblog
Ethan Yonker95e80072017-08-24 21:45:50 -0500276else
277LOCAL_SRC_FILES += \
Hashcode57332152016-12-20 01:30:49 +0100278 toys/other/ifconfig.c \
279 toys/other/netcat.c \
280 toys/other/rfkill.c \
Hashcode57332152016-12-20 01:30:49 +0100281 toys/pending/netstat.c
282endif
Ethan Yonker95e80072017-08-24 21:45:50 -0500283endif
Hashcode57332152016-12-20 01:30:49 +0100284else
285LOCAL_SRC_FILES += \
286 toys/other/ifconfig.c \
287 toys/other/netcat.c \
288 toys/other/rfkill.c \
289 toys/other/switch_root.c \
290 toys/pending/hwclock.c \
291 toys/pending/netstat.c \
292 toys/pending/pgrep.c \
293 toys/pending/top.c
294endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500295
296LOCAL_CFLAGS += \
297 -std=c99 \
298 -Os \
299 -Wno-char-subscripts \
300 -Wno-sign-compare \
301 -Wno-string-plus-int \
302 -Wno-uninitialized \
303 -Wno-unused-parameter \
304 -funsigned-char \
305 -ffunction-sections -fdata-sections \
306 -fno-asynchronous-unwind-tables \
307
308toybox_version := $(shell git -C $(LOCAL_PATH) rev-parse --short=12 HEAD 2>/dev/null)-android
309LOCAL_CFLAGS += -DTOYBOX_VERSION='"$(toybox_version)"'
310
311LOCAL_CLANG := true
312
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500313LOCAL_SHARED_LIBRARIES += libcutils libselinux
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500314
315LOCAL_MODULE := toybox_recovery
316LOCAL_MODULE_STEM := toybox
317LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
318LOCAL_MODULE_TAGS := optional
319
320# dupes: dd df du ls mount renice
321# useless?: freeramdisk fsfreeze install makedevs mkfifo nbd-client
322# partprobe pivot_root pwdx rev rfkill switch_root tty vconfig
323# prefer BSD netcat instead?: nc netcat
324# prefer efs2progs instead?: blkid chattr lsattr
325
326ALL_TOOLS := \
327 acpi \
328 basename \
329 blkid \
330 blockdev \
331 bzcat \
332 cal \
333 cat \
334 chcon \
335 chgrp \
336 chmod \
337 chown \
338 chroot \
339 cksum \
340 clear \
341 comm \
342 cmp \
343 cp \
344 cpio \
345 cut \
346 date \
347 dirname \
348 dmesg \
349 dos2unix \
350 echo \
351 env \
352 expand \
353 expr \
354 fallocate \
355 false \
356 find \
357 free \
358 getenforce \
359 getprop \
360 groups \
361 head \
362 hostname \
363 hwclock \
364 id \
365 ifconfig \
366 inotifyd \
367 insmod \
368 kill \
369 load_policy \
370 ln \
371 logname \
372 losetup \
373 lsmod \
374 lsusb \
375 md5sum \
376 mkdir \
377 mknod \
378 mkswap \
379 mktemp \
380 modinfo \
381 more \
382 mountpoint \
383 mv \
384 netstat \
385 nice \
386 nl \
387 nohup \
388 od \
389 paste \
390 patch \
391 pgrep \
392 pidof \
393 pkill \
394 pmap \
395 printenv \
396 printf \
397 pwd \
398 readlink \
399 realpath \
400 restorecon \
401 rm \
402 rmdir \
403 rmmod \
404 route \
405 runcon \
406 sed \
407 seq \
408 setenforce \
409 setprop \
410 setsid \
411 sha1sum \
412 sleep \
413 sort \
414 split \
415 stat \
416 strings \
417 swapoff \
418 swapon \
419 sync \
420 sysctl \
421 tac \
422 tail \
423 tar \
424 taskset \
425 tee \
426 time \
427 timeout \
428 touch \
429 tr \
430 true \
431 truncate \
432 umount \
433 uname \
434 uniq \
435 unix2dos \
436 usleep \
437 vmstat \
438 wc \
439 which \
440 whoami \
441 xargs \
Hashcode57332152016-12-20 01:30:49 +0100442 yes
443
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500444ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 23; echo $$?),0)
Hashcode57332152016-12-20 01:30:49 +0100445ALL_TOOLS += \
446 arp \
447 base64 \
448 chattr \
449 dd \
450 df \
451 diff \
Hashcode57332152016-12-20 01:30:49 +0100452 egrep \
453 fgrep \
454 flock \
455 freeramdisk \
456 fsfreeze \
457 fstype \
458 ftpget \
459 ftpput \
460 grep \
461 help \
462 install \
463 ionice \
464 iorenice \
465 iotop \
466 killall \
467 ls \
468 lsattr \
469 lsof \
470 lspci \
471 makedevs \
472 mkfifo \
473 mount \
474 nbd-client \
475 nc \
476 netcat \
477 nproc \
478 partprobe \
479 pivot_root \
480 ps \
481 pwdx \
482 readahead \
483 renice \
484 reset \
485 rev \
486 rfkill \
487 sha224sum \
488 sha256sum \
489 sha384sum \
490 sha512sum \
491 telnet \
492 test \
493 top \
494 traceroute \
495 traceroute6 \
496 tty \
497 tunctl \
498 ulimit \
499 uptime \
500 vconfig \
501 watch \
502 xxd \
503 xzcat
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500504ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 24; echo $$?),0)
505ALL_TOOLS += \
506 du
507endif
Hashcode57332152016-12-20 01:30:49 +0100508# Account for master branch changes pulld into CM14.1
509ifneq ($(CM_BUILD),)
510ALL_TOOLS += \
511 chrt \
512 fdisk \
513 file \
514 getfattr \
515 host \
516 log \
517 resize \
518 setfattr
519endif
520endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500521
522# Install the symlinks.
523LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/$(t);)
524
525include $(BUILD_EXECUTABLE)
526
527# Make /sbin/toolbox launchers for each tool
528SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/,$(ALL_TOOLS))
529$(SYMLINKS): TOYBOX_BINARY := $(LOCAL_MODULE_STEM)
530$(SYMLINKS): $(LOCAL_INSTALLED_MODULE) $(LOCAL_PATH)/Android.mk
531 @echo "Symlink: $@ -> $(TOYBOX_BINARY)"
532 @mkdir -p $(dir $@)
533 @rm -rf $@
534 $(hide) ln -sf $(TOYBOX_BINARY) $@
535
536include $(CLEAR_VARS)
537LOCAL_MODULE := toybox_symlinks
538LOCAL_MODULE_TAGS := optional
539LOCAL_ADDITIONAL_DEPENDENCIES := $(SYMLINKS)
540include $(BUILD_PHONY_PACKAGE)
541
542endif
543
544endif