summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYurii Shutkin <shutkin@google.com>2024-02-16 05:13:02 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2024-02-16 05:13:02 +0000
commit73dff3092633ea411acb58573c6dbeca6bf16775 (patch)
treeef02b0c78907944c2726aee2a535a7edadbce2fe
parentb7331fc229a7710920a117c466e10c494660fbd9 (diff)
parent4aedba20787560f03b23b15c7baf5cde103f1331 (diff)
downloadtrusty-73dff3092633ea411acb58573c6dbeca6bf16775.tar.gz
build: rename makefile macro LOG -> INFO_LOG am: 4aedba2078
Original change: https://android-review.googlesource.com/c/trusty/lk/trusty/+/2960824 Change-Id: I30a364c6ee028ce1b7f8682c5b0aba0671a929cc Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--app/trusty/user-tasks.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/trusty/user-tasks.mk b/app/trusty/user-tasks.mk
index 322734e..5928935 100644
--- a/app/trusty/user-tasks.mk
+++ b/app/trusty/user-tasks.mk
@@ -42,7 +42,7 @@
# still allow overriding via environment variable.
#
-$(call LOG,Include Trusty user tasks support)
+$(call INFO_LOG,Include Trusty user tasks support)
TRUSTY_APP_DIR := $(GET_LOCAL_DIR)
@@ -250,7 +250,7 @@ TRUSTY_APP_BASE_LDFLAGS += -L$(TRUSTY_SDK_LIB_DIR)
# Rules are the first time a library is required, so libraries may already be
# processed before we get to them in the list of SDK libraries.
#
-$(call LOG,Generate build rules for SDK libraries)
+$(call INFO_LOG,Generate build rules for SDK libraries)
$(foreach lib,$(TRUSTY_SDK_MODULES),\
$(if $(_MODULES_$(lib)),,$(eval $(call trusty-build-rule,$(lib)))))
@@ -274,7 +274,7 @@ $(TRUSTY_SDK_LICENSE): $(ALL_SDK_LICENSES)
#
# Generate build rules for each user task
#
-$(call LOG,Generate build rules for user tasks)
+$(call INFO_LOG,Generate build rules for user tasks)
$(foreach t,$(ALL_USER_TASKS),\
$(eval $(call trusty-build-rule,$(t))))
@@ -300,7 +300,7 @@ $(foreach t,$(TRUSTY_PREBUILT_USER_TASKS),\
TRUSTY_BUILTIN_USER_TASKS += $(TRUSTY_PREBUILT_USER_TASKS)
# Build the SDK makefile
-$(call LOG,Build SDK makefile)
+$(call INFO_LOG,Build SDK makefile)
$(eval $(call trusty-build-rule,trusty/user/base/sdk))
# Ensure that includes and libs are installed
@@ -317,7 +317,7 @@ else # TRUSTY_APPLOADER_ENABLED
#
# Generate loadable application packages
#
-$(call LOG,Generate loadable application packages)
+$(call INFO_LOG,Generate loadable application packages)
define loadable-app-build-rule
$(eval APP_NAME := $(notdir $(1)))\
$(eval APP_TOP_MODULE := $(1))\
@@ -331,7 +331,7 @@ TRUSTY_LOADABLE_USER_TASKS := $(sort $(TRUSTY_LOADABLE_USER_TASKS))
#
# Generate build rules for each application
#
-$(call LOG,Generate loadable apps build rules)
+$(call INFO_LOG,Generate loadable apps build rules)
$(foreach t,$(TRUSTY_LOADABLE_USER_TASKS),\
$(call loadable-app-build-rule,$(t)))
@@ -348,7 +348,7 @@ TRUSTY_USER_TESTS := $(sort \
#
# Generate build rules for test application
#
-$(call LOG,Generate test apps build rules)
+$(call INFO_LOG,Generate test apps build rules)
$(foreach t,$(TRUSTY_USER_TESTS),\
$(call loadable-app-build-rule,$(t)))