blob: 1970956b57c0f93d16f3eafde61939e258d9d547 [file] [log] [blame]
Joe Onorato6396e702012-05-31 23:21:46 -07001# Copyright (C) 2007 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080014
Joe Onorato6396e702012-05-31 23:21:46 -070015LOCAL_PATH := $(call my-dir)
16
17
18include $(CLEAR_VARS)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080020LOCAL_SRC_FILES := \
Doug Zongker28ce47c2011-10-28 10:33:05 -070021 recovery.cpp \
22 bootloader.cpp \
23 install.cpp \
24 roots.cpp \
Doug Zongker32a0a472011-11-01 11:00:20 -070025 ui.cpp \
Doug Zongker211aebc2011-10-28 15:13:10 -070026 screen_ui.cpp \
Kenny Root7a4adb52013-10-09 10:14:35 -070027 asn1_decoder.cpp \
Doug Zongker9270a202012-01-09 15:16:13 -080028 verifier.cpp \
29 adb_install.cpp
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080031LOCAL_MODULE := recovery
32
33LOCAL_FORCE_STATIC_EXECUTABLE := true
34
JP Abgrall37aedb32014-06-16 19:07:39 -070035# Not working as expected?
36# LOCAL_ADDITIONAL_DEPENDENCIES := mkfs.f2fs
37# LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_RECOVERY_ROOT_OUT)/sbin/mkfs.f2fs
38LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_ROOT_OUT_SBIN)/mkfs.f2fs
39
40
Doug Zongkere08991e2010-02-02 13:09:52 -080041RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080042RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070043LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080044LOCAL_CFLAGS += -Wno-unused-parameter
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070045
Joe Onorato6396e702012-05-31 23:21:46 -070046LOCAL_STATIC_LIBRARIES := \
47 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070048 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070049 libminzip \
50 libz \
51 libmtdutils \
52 libmincrypt \
53 libminadbd \
54 libminui \
Joe Onorato6396e702012-05-31 23:21:46 -070055 libpng \
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080056 libfs_mgr \
Joe Onorato6396e702012-05-31 23:21:46 -070057 libcutils \
Ying Wang4e214822013-04-09 21:41:29 -070058 liblog \
Kenny Root7eb75672012-10-16 10:47:27 -070059 libselinux \
Joe Onorato6396e702012-05-31 23:21:46 -070060 libstdc++ \
Stephen Hines91eb7212012-08-23 15:20:16 -070061 libm \
Joe Onorato6396e702012-05-31 23:21:46 -070062 libc
Doug Zongker49c73a72010-06-29 17:36:28 -070063
64ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Joe Onorato6396e702012-05-31 23:21:46 -070065 LOCAL_CFLAGS += -DUSE_EXT4
Doug Zongkerf39989a2013-12-11 15:40:28 -080066 LOCAL_C_INCLUDES += system/extras/ext4_utils system/vold
Joe Onorato6396e702012-05-31 23:21:46 -070067 LOCAL_STATIC_LIBRARIES += libext4_utils_static libz
Doug Zongker49c73a72010-06-29 17:36:28 -070068endif
69
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070# This binary is in the recovery ramdisk, which is otherwise a copy of root.
71# It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses
72# a (redundant) copy of the binary in /system/bin for user builds.
73# TODO: Build the ramdisk image in a more principled way.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074LOCAL_MODULE_TAGS := eng
75
Doug Zongkerddd6a282009-06-09 12:22:33 -070076ifeq ($(TARGET_RECOVERY_UI_LIB),)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070077 LOCAL_SRC_FILES += default_device.cpp
Doug Zongkerddd6a282009-06-09 12:22:33 -070078else
79 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
80endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080081
Doug Zongkercc8cd3f2010-09-20 12:16:13 -070082LOCAL_C_INCLUDES += system/extras/ext4_utils
Paul Lawrencea8c56072014-03-03 11:22:49 -080083LOCAL_C_INCLUDES += external/openssl/include
Doug Zongkercc8cd3f2010-09-20 12:16:13 -070084
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080085include $(BUILD_EXECUTABLE)
86
Kenny Root7a4adb52013-10-09 10:14:35 -070087# All the APIs for testing
88include $(CLEAR_VARS)
89LOCAL_MODULE := libverifier
90LOCAL_MODULE_TAGS := tests
91LOCAL_SRC_FILES := \
92 asn1_decoder.cpp
93include $(BUILD_STATIC_LIBRARY)
Joe Onorato6396e702012-05-31 23:21:46 -070094
Doug Zongker73ae31c2009-12-09 17:01:45 -080095include $(CLEAR_VARS)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070096LOCAL_MODULE := verifier_test
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070097LOCAL_FORCE_STATIC_EXECUTABLE := true
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070098LOCAL_MODULE_TAGS := tests
Doug Zongker9e805d62013-09-04 13:44:38 -070099LOCAL_CFLAGS += -DNO_RECOVERY_MOUNT
Doug Zongker0d32f252014-02-13 15:07:56 -0800100LOCAL_CFLAGS += -Wno-unused-parameter
Joe Onorato6396e702012-05-31 23:21:46 -0700101LOCAL_SRC_FILES := \
102 verifier_test.cpp \
Kenny Root7a4adb52013-10-09 10:14:35 -0700103 asn1_decoder.cpp \
Joe Onorato6396e702012-05-31 23:21:46 -0700104 verifier.cpp \
105 ui.cpp
106LOCAL_STATIC_LIBRARIES := \
107 libmincrypt \
108 libminui \
Doug Zongker99916f02014-01-13 14:16:58 -0800109 libminzip \
Joe Onorato6396e702012-05-31 23:21:46 -0700110 libcutils \
111 libstdc++ \
112 libc
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700113include $(BUILD_EXECUTABLE)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800114
115
Joe Onorato6396e702012-05-31 23:21:46 -0700116include $(LOCAL_PATH)/minui/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700117 $(LOCAL_PATH)/minzip/Android.mk \
118 $(LOCAL_PATH)/minadbd/Android.mk \
119 $(LOCAL_PATH)/mtdutils/Android.mk \
Kenny Root7a4adb52013-10-09 10:14:35 -0700120 $(LOCAL_PATH)/tests/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700121 $(LOCAL_PATH)/tools/Android.mk \
122 $(LOCAL_PATH)/edify/Android.mk \
Doug Zongker76adfc52014-01-13 10:04:25 -0800123 $(LOCAL_PATH)/uncrypt/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700124 $(LOCAL_PATH)/updater/Android.mk \
125 $(LOCAL_PATH)/applypatch/Android.mk