Author: jogo Date: 2015-08-14 15:04:22 +0200 (Fri, 14 Aug 2015) New Revision: 46594
Modified: trunk/target/linux/brcm47xx/image/Makefile Log: brcm47xx: prefix netgear specific device variables with NETGEAR_ Rename BOARD_ID to NETGEAR_BOARD_ID and REGION to NETGEAR_REGION. Signed-off-by: Jonas Gorski <[email protected]> Modified: trunk/target/linux/brcm47xx/image/Makefile =================================================================== --- trunk/target/linux/brcm47xx/image/Makefile 2015-08-14 13:03:36 UTC (rev 46593) +++ trunk/target/linux/brcm47xx/image/Makefile 2015-08-14 13:04:22 UTC (rev 46594) @@ -130,8 +130,8 @@ $(STAGING_DIR_HOST)/bin/mkchkimg \ -o [email protected] \ -k $@ \ - -b $(BOARD_ID) \ - -r $(REGION) + -b $(NETGEAR_BOARD_ID) \ + -r $(NETGEAR_REGION) mv [email protected] $@ endef @@ -141,7 +141,7 @@ DEVICE_VARS += PRODUCTID DEVICE_VARS += DEVICE_ID VERSION -DEVICE_VARS += BOARD_ID REGION +DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION define Device/Default KERNEL := kernel-bin @@ -187,8 +187,8 @@ define NetgearDevice define Device/netgear-$(1) $$(Device/netgear) - BOARD_ID := $(2) - REGION := $(3) + NETGEAR_BOARD_ID := $(2) + NETGEAR_REGION := $(3) endef TARGET_DEVICES += netgear-$(1) endef _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
