diff options
author | John Crispin <john@openwrt.org> | 2011-01-23 19:16:33 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-01-23 19:16:33 +0000 |
commit | a15b4bf6fc2805d91653e609291a100e232c7f0c (patch) | |
tree | a444b4f17b9182f06ef6a414d35bbb1c064af3e2 /target/linux/lantiq/image | |
parent | a8819fd2205a3016b048511fafdbda907e2f5b8b (diff) | |
download | upstream-a15b4bf6fc2805d91653e609291a100e232c7f0c.tar.gz upstream-a15b4bf6fc2805d91653e609291a100e232c7f0c.tar.bz2 upstream-a15b4bf6fc2805d91653e609291a100e232c7f0c.zip |
* adds arv4518pw mach support * fixes arv4525pw * make sure all mach names have the same style * move code around
SVN-Revision: 25075
Diffstat (limited to 'target/linux/lantiq/image')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index f00c8e753a..2d6acc8d41 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -59,8 +59,11 @@ define Image/BuildKernel $(call Image/BuildKernel/Template,EASY4010,$(xway_cmdline)) $(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline)) $(call Image/BuildKernel/Template,EASY50812,$(xway_cmdline)) - $(call Image/BuildKernel/Template,ARV452,$(xway_cmdline)) - $(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline)) + $(call Image/BuildKernel/Template,ARV4510PW,$(xway_cmdline)) + $(call Image/BuildKernel/Template,ARV4518PW,$(xway_cmdline)) + $(call Image/BuildKernel/Template,ARV4520PW,$(xway_cmdline)) + $(call Image/BuildKernel/Template,ARV4525PW,$(xway_cmdline)) + $(call Image/BuildKernel/Template,ARV752DPW,$(xway_cmdline)) $(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline)) $(call Image/BuildKernel/Template,NONE) endef @@ -69,8 +72,11 @@ define Image/Build $(call Image/Build/$(1),$(1),EASY4010) $(call Image/Build/$(1),$(1),EASY50712) $(call Image/Build/$(1),$(1),EASY50812) - $(call Image/Build/$(1),$(1),ARV452) - $(call Image/Build/$(1),$(1),ARV752DPW22) + $(call Image/Build/$(1),$(1),ARV4510PW) + $(call Image/Build/$(1),$(1),ARV4518PW) + $(call Image/Build/$(1),$(1),ARV4520PW) + $(call Image/Build/$(1),$(1),ARV4525PW) + $(call Image/Build/$(1),$(1),ARV752DPW) $(call Image/Build/$(1),$(1),ARV7518PW) $(call Image/Build/$(1),$(1),NONE) $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs |