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
This commit is contained in:
Felix Fietkau 2015-10-31 09:27:04 +00:00
parent b100027a83
commit 86136e2bc3

View File

@ -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),\