You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
582 B
13 lines
582 B
#---------------------------------------------
|
|
# Kernel Config
|
|
#---------------------------------------------
|
|
kernel_config_mk := $(strip $(sort $(wildcard \
|
|
$(shell test -d $(VENDOR_OPEN_SOURCE) && find -L $(VENDOR_OPEN_SOURCE) -maxdepth 2 -name kernel-config.mk -and -not -name ".*") )))
|
|
$(foreach mk,$(kernel_config_mk),$(eval include $(mk)))
|
|
|
|
#---------------------------------------------
|
|
# Recoveryimg Config
|
|
#---------------------------------------------
|
|
TARGET_RECOVERY_DIR := $(SOC_PLATFORM_PATH)/minorimages/recovery
|
|
-include $(TARGET_RECOVERY_DIR)/recovery-config.mk
|