From: Felix Fietkau Date: Sat, 31 Oct 2015 09:27:04 +0000 (+0000) Subject: include/image.mk: Introduce sanitized profile variable X-Git-Tag: reboot~1711 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=86136e2bc348835bc88fb3c7e3e9eddbe4aa3743;p=openwrt%2Fstaging%2Fnoltari.git 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 SVN-Revision: 47307 --- diff --git a/include/image.mk b/include/image.mk index 4e22fa59a0..3f6556874a 100644 --- a/include/image.mk +++ b/include/image.mk @@ -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),\