aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/Makefile1
-rw-r--r--core/main.mk4
2 files changed, 5 insertions, 0 deletions
diff --git a/core/Makefile b/core/Makefile
index d223122893..0f4467bcf4 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -1671,6 +1671,7 @@ ifneq ($(dont_bother),true)
include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
-include $(sort $(wildcard vendor/*/build/tasks/*.mk))
-include $(sort $(wildcard device/*/build/tasks/*.mk))
+-include $(sort $(wildcard device/*/common/tasks/*.mk))
endif
# -----------------------------------------------------------------
diff --git a/core/main.mk b/core/main.mk
index c165aa461c..d59994e7ba 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -708,6 +708,10 @@ ifdef FULL_BUILD
$(foreach p,$(product_FILES),$(info : $(p)))
$(error done)
endif
+ ifneq ($(TARGET_BOOTLOADER_TYPE),fastboot)
+ # We need (host) fs_get_stats for the boottarball target
+ subdirs += build/tools/fs_get_stats
+ endif
else
# We're not doing a full build, and are probably only including
# a subset of the module makefiles. Don't try to build any modules