diff options
author | Bob Badour <bbadour@google.com> | 2021-02-13 03:00:57 +0100 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2021-02-14 19:37:20 +0100 |
commit | 29be3f6ef1b9f9884206cade2fc98b3f012ef27e (patch) | |
tree | 780fbca124716d20dd0ed8d89544cffafeead673 /Android.mk | |
parent | Merge "recovery: don't mount acct" (diff) | |
download | android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.gz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.bz2 android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.lz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.xz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.zst android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index 58167491a..96af417bf 100644 --- a/Android.mk +++ b/Android.mk @@ -28,6 +28,9 @@ TARGET_RECOVERY_UI_LIB ?= librecovery_ui_default include $(CLEAR_VARS) LOCAL_MODULE := librecovery_ui_ext +LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT SPDX-license-identifier-OFL +LOCAL_LICENSE_CONDITIONS := by_exception_only notice +LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE # LOCAL_MODULE_PATH for shared libraries is unsupported in multiarch builds. LOCAL_MULTILIB := first @@ -54,6 +57,9 @@ include $(BUILD_SHARED_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE := recovery_deps +LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT SPDX-license-identifier-OFL +LOCAL_LICENSE_CONDITIONS := by_exception_only notice +LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) LOCAL_REQUIRED_MODULES += \ |