The matching change to build system now writes these values as build
properties for recovery image. This allows us dropping the dependency on
Android.mk (as well as having more flexibility to do UI customization).
Also rename a few constant names, as the naming doesn't fully follow the
style guide (which reads "whose value is fixed for the duration of the
program").
Bug: 110380063
Test: Build and flash recovery image on taimen, which uses custom margin
height. Check the UI and choose `Run graphics test`.
Change-Id: I2c50326123639cb36022f51b62cdeed925d77ba7
165 lines
3.8 KiB
Makefile
165 lines
3.8 KiB
Makefile
# Copyright (C) 2007 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
# Needed by build/make/core/Makefile.
|
|
RECOVERY_API_VERSION := 3
|
|
RECOVERY_FSTAB_VERSION := 2
|
|
|
|
# TARGET_RECOVERY_UI_LIB should be one of librecovery_ui_{default,wear,vr} or a device-specific
|
|
# module that defines make_device() and the exact RecoveryUI class for the target. It defaults to
|
|
# librecovery_ui_default, which uses ScreenRecoveryUI.
|
|
TARGET_RECOVERY_UI_LIB ?= librecovery_ui_default
|
|
|
|
recovery_common_cflags := \
|
|
-Wall \
|
|
-Werror \
|
|
-DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
|
|
|
|
# librecovery_ui (static library)
|
|
# ===============================
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
device.cpp \
|
|
screen_ui.cpp \
|
|
ui.cpp \
|
|
vr_ui.cpp \
|
|
wear_ui.cpp
|
|
|
|
LOCAL_MODULE := librecovery_ui
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libminui \
|
|
libotautil \
|
|
libbase
|
|
|
|
LOCAL_CFLAGS := $(recovery_common_cflags)
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
librecovery_static_libraries := \
|
|
$(TARGET_RECOVERY_UI_LIB) \
|
|
libbootloader_message \
|
|
libfusesideload \
|
|
libminadbd \
|
|
librecovery_ui \
|
|
libminui \
|
|
libverifier \
|
|
libotautil \
|
|
libasyncio \
|
|
libbatterymonitor \
|
|
libcrypto_utils \
|
|
libcrypto \
|
|
libext4_utils \
|
|
libfs_mgr \
|
|
libpng \
|
|
libsparse \
|
|
libvintf_recovery \
|
|
libvintf \
|
|
libhidl-gen-utils \
|
|
libtinyxml2 \
|
|
libziparchive \
|
|
libbase \
|
|
libutils \
|
|
libcutils \
|
|
liblog \
|
|
libselinux \
|
|
libz \
|
|
|
|
# librecovery (static library)
|
|
# ===============================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
adb_install.cpp \
|
|
fsck_unshare_blocks.cpp \
|
|
fuse_sdcard_provider.cpp \
|
|
install.cpp \
|
|
recovery.cpp \
|
|
roots.cpp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
system/vold \
|
|
|
|
LOCAL_CFLAGS := $(recovery_common_cflags)
|
|
|
|
LOCAL_MODULE := librecovery
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
$(librecovery_static_libraries)
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
# recovery (static executable)
|
|
# ===============================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
logging.cpp \
|
|
recovery_main.cpp \
|
|
|
|
LOCAL_MODULE := recovery
|
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/bin
|
|
|
|
# Cannot link with LLD: undefined symbol: UsbNoPermissionsLongHelpText
|
|
# http://b/77543887, lld does not handle -Wl,--gc-sections as well as ld.
|
|
LOCAL_USE_CLANG_LLD := false
|
|
|
|
LOCAL_CFLAGS := $(recovery_common_cflags)
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
librecovery \
|
|
$(librecovery_static_libraries)
|
|
|
|
LOCAL_HAL_STATIC_LIBRARIES := libhealthd
|
|
|
|
LOCAL_REQUIRED_MODULES := \
|
|
e2fsdroid.recovery \
|
|
mke2fs.recovery \
|
|
mke2fs.conf
|
|
|
|
ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
|
|
ifeq ($(HOST_OS),linux)
|
|
LOCAL_REQUIRED_MODULES += \
|
|
sload.f2fs \
|
|
mkfs.f2fs
|
|
endif
|
|
endif
|
|
|
|
# e2fsck is needed for adb remount -R.
|
|
ifeq ($(BOARD_EXT4_SHARE_DUP_BLOCKS),true)
|
|
ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
|
|
LOCAL_REQUIRED_MODULES += e2fsck_static
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
|
|
LOCAL_REQUIRED_MODULES += \
|
|
recovery-persist \
|
|
recovery-refresh
|
|
endif
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include \
|
|
$(LOCAL_PATH)/boot_control/Android.mk \
|
|
$(LOCAL_PATH)/minui/Android.mk \
|
|
$(LOCAL_PATH)/tests/Android.mk \
|
|
$(LOCAL_PATH)/updater/Android.mk \
|
|
$(LOCAL_PATH)/updater_sample/Android.mk \
|