diff options
author | John Crispin <john@openwrt.org> | 2011-02-04 22:49:52 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-02-04 22:49:52 +0000 |
commit | 2268dfafd393568ec8962cc3e3cc23e006d42300 (patch) | |
tree | 12d67bfe15a92b26f2bb8a744480b01d4b8fe178 /target/linux/lantiq/image | |
parent | 752dcaeaf4c17c7688e03d9e8aba05e84ea6fb0a (diff) | |
download | upstream-2268dfafd393568ec8962cc3e3cc23e006d42300.tar.gz upstream-2268dfafd393568ec8962cc3e3cc23e006d42300.tar.bz2 upstream-2268dfafd393568ec8962cc3e3cc23e006d42300.zip |
* adds ath5k platform support * adds several new profiles
SVN-Revision: 25367
Diffstat (limited to 'target/linux/lantiq/image')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index b580c99e2d..cc5d696d83 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -54,7 +54,7 @@ define Image/BuildKernel/Template $(CP) $(KDIR)/uImage-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage endef -ifeq ($(CONFIG_SOC_LANTIQ_XWAY),y) +ifeq ($(CONFIG_TARGET_lantiq_xway),y) define Image/BuildKernel/Profile/EASY50712 $(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline)) endef @@ -71,6 +71,38 @@ define Image/Build/Profile/EASY50812 $(call Image/Build/$(1),$(1),EASY50812) endef +define Image/BuildKernel/Profile/ARV4518PW + $(call Image/BuildKernel/Template,ARV4518PW,$(xway_cmdline)) +endef + +define Image/Build/Profile/ARV4518PW + $(call Image/Build/$(1),$(1),ARV4518PW) +endef + +define Image/BuildKernel/Profile/ARV4520PW + $(call Image/BuildKernel/Template,ARV4520PW,$(xway_cmdline)) +endef + +define Image/Build/Profile/ARV4520PW + $(call Image/Build/$(1),$(1),ARV4520PW) +endef + +define Image/BuildKernel/Profile/ARV4525PW + $(call Image/BuildKernel/Template,ARV4525PW,$(xway_cmdline)) +endef + +define Image/Build/Profile/ARV4525PW + $(call Image/Build/$(1),$(1),ARV4525PW) +endef + +define Image/BuildKernel/Profile/ARV452CPW + $(call Image/BuildKernel/Template,ARV452CPW,$(xway_cmdline)) +endef + +define Image/Build/Profile/ARV452CPW + $(call Image/Build/$(1),$(1),ARV452CPW) +endef + define Image/BuildKernel/Profile/ARV752DPW22 $(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline)) endef @@ -111,7 +143,7 @@ define Image/Build/Profile/Generic endef endif -ifeq ($(CONFIG_SOC_LANTIQ_FALCON),y) +ifeq ($(CONFIG_TARGET_lantiq_falcon),y) define Image/BuildKernel $(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline)) $(call Image/BuildKernel/Template,NONE) |