blob: 8ba8dafe159e2789aae938bca6426c75e739afc9 [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 \
Hashcode57332152016-12-20 01:30:49 +0100219 toys/posix/ps.c \
220 toys/posix/ulimit.c
Humberto Borba84e16152018-01-05 00:51:40 -0200221ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 27; echo $$?),0)
222LOCAL_SRC_FILES += \
223 toys/pending/xzcat.c
224endif
225ifeq ($(shell test $(PLATFORM_SDK_VERSION) -eq 26; echo $$?),0)
Ethan Yonker95e80072017-08-24 21:45:50 -0500226# Android 8.0 had some tools in different paths
227LOCAL_SRC_FILES += \
Humberto Borba84e16152018-01-05 00:51:40 -0200228 toys/pending/dmesg.c
229else
230LOCAL_SRC_FILES += \
231 toys/lsb/dmesg.c
232endif
233
234ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 25; echo $$?),0)
235# Android 8.0/8.1 had some tools in different paths
236LOCAL_SRC_FILES += \
Ethan Yonker95e80072017-08-24 21:45:50 -0500237 toys/net/ftpget.c
238else
239LOCAL_SRC_FILES += \
Ethan Yonker95e80072017-08-24 21:45:50 -0500240 toys/pending/ftpget.c
241endif
242
Hashcode57332152016-12-20 01:30:49 +0100243# Account for master branch changes pulld into CM14.1
244ifneq ($(CM_BUILD),)
245LOCAL_SRC_FILES += \
246 toys/android/log.c \
247 toys/android/sendevent.c \
248 toys/android/start.c \
249 toys/net/ifconfig.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500250 toys/net/microcom.c \
Hashcode57332152016-12-20 01:30:49 +0100251 toys/net/netcat.c \
252 toys/net/netstat.c \
253 toys/net/rfkill.c \
254 toys/net/tunctl.c \
255 toys/other/setfattr.c \
256 toys/pending/chrt.c \
257 toys/pending/fdisk.c \
258 toys/pending/getfattr.c \
259 toys/pending/host.c \
260 toys/pending/resize.c \
261 toys/posix/file.c
262else
263LOCAL_SRC_FILES += \
Ethan Yonker95e80072017-08-24 21:45:50 -0500264 toys/other/switch_root.c
265ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 25; echo $$?),0)
266# Android 8.0 had some tools in different paths
267LOCAL_SRC_FILES += \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500268 toys/android/log.c \
269 toys/android/sendevent.c \
270 toys/android/start.c \
Ethan Yonker95e80072017-08-24 21:45:50 -0500271 toys/net/ifconfig.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500272 toys/net/microcom.c \
Ethan Yonker95e80072017-08-24 21:45:50 -0500273 toys/net/netcat.c \
274 toys/net/netstat.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500275 toys/net/rfkill.c \
276 toys/net/tunctl.c \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500277 toys/pending/getfattr.c \
278 toys/pending/modprobe.c \
279 toys/pending/setfattr.c \
280 toys/posix/file.c \
281 toys/posix/uudecode.c \
282 toys/posix/uuencode.c
Humberto Borba84e16152018-01-05 00:51:40 -0200283ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 26; echo $$?),0)
284# Android 8.1 had some tools in different paths
285LOCAL_SRC_FILES += \
286 toys/other/chrt.c \
287 toys/pending/gzip.c
288else
289LOCAL_SRC_FILES += \
290 toys/pending/chrt.c
291endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500292LOCAL_SHARED_LIBRARIES += liblog
Ethan Yonker95e80072017-08-24 21:45:50 -0500293else
294LOCAL_SRC_FILES += \
Hashcode57332152016-12-20 01:30:49 +0100295 toys/other/ifconfig.c \
296 toys/other/netcat.c \
297 toys/other/rfkill.c \
Hashcode57332152016-12-20 01:30:49 +0100298 toys/pending/netstat.c
299endif
Ethan Yonker95e80072017-08-24 21:45:50 -0500300endif
Hashcode57332152016-12-20 01:30:49 +0100301else
302LOCAL_SRC_FILES += \
303 toys/other/ifconfig.c \
304 toys/other/netcat.c \
305 toys/other/rfkill.c \
306 toys/other/switch_root.c \
307 toys/pending/hwclock.c \
308 toys/pending/netstat.c \
309 toys/pending/pgrep.c \
310 toys/pending/top.c
311endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500312
313LOCAL_CFLAGS += \
314 -std=c99 \
315 -Os \
316 -Wno-char-subscripts \
317 -Wno-sign-compare \
318 -Wno-string-plus-int \
319 -Wno-uninitialized \
320 -Wno-unused-parameter \
321 -funsigned-char \
322 -ffunction-sections -fdata-sections \
323 -fno-asynchronous-unwind-tables \
324
Humberto Borba84e16152018-01-05 00:51:40 -0200325toybox_version := $(shell sed 's/#define.*TOYBOX_VERSION.*"\(.*\)"/\1/p;d' $(LOCAL_PATH)/main.c)
326LOCAL_CFLAGS += -DTOYBOX_VERSION=\"$(toybox_version)\"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500327
328LOCAL_CLANG := true
329
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500330LOCAL_SHARED_LIBRARIES += libcutils libselinux
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500331
Humberto Borba84e16152018-01-05 00:51:40 -0200332ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 26; echo $$?),0)
333LOCAL_CFLAGS += \
334 -Wno-gnu-variable-sized-type-not-at-end \
335 -Wno-missing-field-initializers
336
337LOCAL_SHARED_LIBRARIES += libz
338endif
339
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500340LOCAL_MODULE := toybox_recovery
341LOCAL_MODULE_STEM := toybox
342LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
343LOCAL_MODULE_TAGS := optional
344
345# dupes: dd df du ls mount renice
346# useless?: freeramdisk fsfreeze install makedevs mkfifo nbd-client
347# partprobe pivot_root pwdx rev rfkill switch_root tty vconfig
348# prefer BSD netcat instead?: nc netcat
349# prefer efs2progs instead?: blkid chattr lsattr
350
351ALL_TOOLS := \
352 acpi \
353 basename \
354 blkid \
355 blockdev \
356 bzcat \
357 cal \
358 cat \
359 chcon \
360 chgrp \
361 chmod \
362 chown \
363 chroot \
364 cksum \
365 clear \
366 comm \
367 cmp \
368 cp \
369 cpio \
370 cut \
371 date \
372 dirname \
373 dmesg \
374 dos2unix \
375 echo \
376 env \
377 expand \
378 expr \
379 fallocate \
380 false \
381 find \
382 free \
383 getenforce \
384 getprop \
385 groups \
386 head \
387 hostname \
388 hwclock \
389 id \
390 ifconfig \
391 inotifyd \
392 insmod \
393 kill \
394 load_policy \
395 ln \
396 logname \
397 losetup \
398 lsmod \
399 lsusb \
400 md5sum \
401 mkdir \
402 mknod \
403 mkswap \
404 mktemp \
405 modinfo \
406 more \
407 mountpoint \
408 mv \
409 netstat \
410 nice \
411 nl \
412 nohup \
413 od \
414 paste \
415 patch \
416 pgrep \
417 pidof \
418 pkill \
419 pmap \
420 printenv \
421 printf \
422 pwd \
423 readlink \
424 realpath \
425 restorecon \
426 rm \
427 rmdir \
428 rmmod \
429 route \
430 runcon \
431 sed \
432 seq \
433 setenforce \
434 setprop \
435 setsid \
436 sha1sum \
437 sleep \
438 sort \
439 split \
440 stat \
441 strings \
442 swapoff \
443 swapon \
444 sync \
445 sysctl \
446 tac \
447 tail \
448 tar \
449 taskset \
450 tee \
451 time \
452 timeout \
453 touch \
454 tr \
455 true \
456 truncate \
457 umount \
458 uname \
459 uniq \
460 unix2dos \
461 usleep \
462 vmstat \
463 wc \
464 which \
465 whoami \
466 xargs \
Hashcode57332152016-12-20 01:30:49 +0100467 yes
468
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500469ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 23; echo $$?),0)
Hashcode57332152016-12-20 01:30:49 +0100470ALL_TOOLS += \
471 arp \
472 base64 \
473 chattr \
474 dd \
475 df \
476 diff \
Hashcode57332152016-12-20 01:30:49 +0100477 egrep \
478 fgrep \
479 flock \
480 freeramdisk \
481 fsfreeze \
482 fstype \
483 ftpget \
484 ftpput \
485 grep \
486 help \
487 install \
488 ionice \
489 iorenice \
490 iotop \
491 killall \
492 ls \
493 lsattr \
494 lsof \
495 lspci \
496 makedevs \
497 mkfifo \
498 mount \
499 nbd-client \
500 nc \
501 netcat \
502 nproc \
503 partprobe \
504 pivot_root \
505 ps \
506 pwdx \
507 readahead \
508 renice \
509 reset \
510 rev \
511 rfkill \
512 sha224sum \
513 sha256sum \
514 sha384sum \
515 sha512sum \
516 telnet \
517 test \
518 top \
519 traceroute \
520 traceroute6 \
521 tty \
522 tunctl \
523 ulimit \
524 uptime \
525 vconfig \
526 watch \
Humberto Borba84e16152018-01-05 00:51:40 -0200527 xxd
528ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 27; echo $$?),0)
529ALL_TOOLS += \
Hashcode57332152016-12-20 01:30:49 +0100530 xzcat
Humberto Borba84e16152018-01-05 00:51:40 -0200531endif
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500532ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 24; echo $$?),0)
533ALL_TOOLS += \
Humberto Borba84e16152018-01-05 00:51:40 -0200534 du \
535 gzip \
536 gunzip \
537 zcat
D. Andrei Măceș9ce12ec2016-12-22 17:14:21 -0500538endif
Hashcode57332152016-12-20 01:30:49 +0100539# Account for master branch changes pulld into CM14.1
540ifneq ($(CM_BUILD),)
541ALL_TOOLS += \
542 chrt \
543 fdisk \
544 file \
545 getfattr \
546 host \
547 log \
548 resize \
549 setfattr
550endif
551endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500552
553# Install the symlinks.
554LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/$(t);)
555
556include $(BUILD_EXECUTABLE)
557
558# Make /sbin/toolbox launchers for each tool
559SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/,$(ALL_TOOLS))
560$(SYMLINKS): TOYBOX_BINARY := $(LOCAL_MODULE_STEM)
561$(SYMLINKS): $(LOCAL_INSTALLED_MODULE) $(LOCAL_PATH)/Android.mk
562 @echo "Symlink: $@ -> $(TOYBOX_BINARY)"
563 @mkdir -p $(dir $@)
564 @rm -rf $@
565 $(hide) ln -sf $(TOYBOX_BINARY) $@
566
567include $(CLEAR_VARS)
568LOCAL_MODULE := toybox_symlinks
569LOCAL_MODULE_TAGS := optional
570LOCAL_ADDITIONAL_DEPENDENCIES := $(SYMLINKS)
571include $(BUILD_PHONY_PACKAGE)
572
573endif
574
575endif