diff options
author | John Crispin <john@openwrt.org> | 2011-07-07 20:20:51 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-07-07 20:20:51 +0000 |
commit | 7f548d379f997732d0ab5f69ea3a1052fb524958 (patch) | |
tree | da001cc2f2788b953e51438415b5f3f546ddce56 /target | |
parent | d7732885edc2a3936a01aac7e40596a7f7a463e7 (diff) | |
download | upstream-7f548d379f997732d0ab5f69ea3a1052fb524958.tar.gz upstream-7f548d379f997732d0ab5f69ea3a1052fb524958.tar.bz2 upstream-7f548d379f997732d0ab5f69ea3a1052fb524958.zip |
fix generation of falcon images for profiles
SVN-Revision: 27550
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index f0c06fd94e..473094655e 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -202,6 +202,22 @@ endef endif ifeq ($(CONFIG_TARGET_lantiq_falcon)$(CONFIG_TARGET_lantiq_falcon_stable),y) +define Image/BuildKernel/Profile/EASY98000 + $(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline)) +endef + +define Image/Build/Profile/EASY98000 + $(call Image/Build/$(1),$(1),EASY98000) +endef + +define Image/BuildKernel/Profile/EASY98020 + $(call Image/BuildKernel/Template,EASY98020,$(falcon_cmdline)) +endef + +define Image/Build/Profile/EASY98020 + $(call Image/Build/$(1),$(1),EASY98020) +endef + define Image/BuildKernel/Profile/Generic $(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline)) $(call Image/BuildKernel/Template,EASY98020,$(falcon_cmdline)) |