Skip to content
Snippets Groups Projects
Commit ace94615 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

image.mk: fix emitting profiles for targets that have no subtargets


Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent ce21e18d
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,6 @@ DTS_DIR:=$(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/dts ...@@ -20,7 +20,6 @@ DTS_DIR:=$(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/dts
sanitize = $(call tolower,$(subst _,-,$(1))) sanitize = $(call tolower,$(subst _,-,$(1)))
SUBTARGET ?= default
DIST_SANITIZED:=$(call sanitize,$(VERSION_DIST)) DIST_SANITIZED:=$(call sanitize,$(VERSION_DIST))
EXTRA_NAME_SANITIZED=$(call sanitize,$(EXTRA_IMAGE_NAME)) EXTRA_NAME_SANITIZED=$(call sanitize,$(EXTRA_IMAGE_NAME))
...@@ -475,7 +474,7 @@ define Device/Export ...@@ -475,7 +474,7 @@ define Device/Export
endef endef
define Device/Check define Device/Check
_TARGET = $$(if $$(and $$(filter $(SUBTARGET),$$(SUBTARGETS)),$$(filter $(PROFILE),$$(PROFILES) DEVICE_$(1))),install,install-disabled) _TARGET = $$(if $$(and $(if $(SUBTARGET),,1)$$(filter $(SUBTARGET),$$(SUBTARGETS)),$$(filter $(PROFILE),$$(PROFILES) DEVICE_$(1))),install,install-disabled)
_COMPILE_TARGET = $$(if $(if $(IB),,$(CONFIG_IB)$$(filter $(PROFILE),$$(PROFILES) DEVICE_$(1))),compile,compile-disabled) _COMPILE_TARGET = $$(if $(if $(IB),,$(CONFIG_IB)$$(filter $(PROFILE),$$(PROFILES) DEVICE_$(1))),compile,compile-disabled)
endef endef
...@@ -563,7 +562,7 @@ $(DEVICE_DESCRIPTION) ...@@ -563,7 +562,7 @@ $(DEVICE_DESCRIPTION)
endef endef
DEVICE_PROFILE_CHECK=$(and $(DEVICE_TITLE),$(filter $(SUBTARGET),$(SUBTARGETS))) DEVICE_PROFILE_CHECK=$(and $(DEVICE_TITLE),$(if $(SUBTARGET),,1)$(filter $(SUBTARGET),$(SUBTARGETS)))
define Device/Dump define Device/Dump
$$(eval $$(if $$(DEVICE_PROFILE_CHECK),$$(info $$(call Device/DumpInfo,$(1))))) $$(eval $$(if $$(DEVICE_PROFILE_CHECK),$$(info $$(call Device/DumpInfo,$(1)))))
......
...@@ -274,7 +274,7 @@ endif ...@@ -274,7 +274,7 @@ endif
CUR_SUBTARGET:=$(SUBTARGET) CUR_SUBTARGET:=$(SUBTARGET)
ifeq ($(SUBTARGETS),) ifeq ($(SUBTARGETS),)
CUR_SUBTARGET ?= default CUR_SUBTARGET := default
endif endif
define BuildTargets/DumpCurrent define BuildTargets/DumpCurrent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment