From: nbd Date: Sat, 31 Oct 2015 09:27:04 +0000 (+0000) Subject: include/image.mk: Introduce sanitized profile variable X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=eb87efc4ad734cd8983d7e5d827e9effb91ec962;p=openwrt.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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47307 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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),\