include/image.mk: Introduce sanitized profile variable

Making common code reusable as there's a lot of duplicate code in imx6,
kirkwood and oxnas archs.

Signed-off-by: Petr Štetiar <ynezz@true.cz>

SVN-Revision: 47307
v19.07.3_mercusys_ac12_duma
Felix Fietkau 9 years ago
parent b100027a83
commit 86136e2bc3

@ -89,6 +89,16 @@ define toupper
$(shell echo $(1) | tr '[:lower:]' '[:upper:]')
endef
define tolower
$(shell echo $(1) | tr '[:upper:]' '[:lower:]')
endef
define sanitize
$(shell echo $(call tolower,$(1)) | sed 's/_/-/g')
endef
PROFILE_SANITIZED := $(call sanitize,$(PROFILE))
define split_args
$(foreach data, \
$(subst |,$(space),\

Loading…
Cancel
Save