2010-12-12 22:57:16 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
|
|
|
JFFS2_BLOCKSIZE = 64k 128k 256k
|
|
|
|
|
2011-07-19 18:06:33 +00:00
|
|
|
ase_cmdline=-console=ttyLTQ0,115200 rootfstype=squashfs,jffs2
|
2011-05-29 21:19:26 +00:00
|
|
|
xway_cmdline=-console=ttyLTQ1,115200 rootfstype=squashfs,jffs2
|
|
|
|
falcon_cmdline=-console=ttyLTQ0,115200 rootfstype=squashfs,jffs2
|
2010-12-12 22:57:16 +00:00
|
|
|
|
|
|
|
define CompressLzma
|
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e $(1) $(2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define PatchKernelLzma
|
|
|
|
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
|
|
|
|
$(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(1) '$(strip $(2))'
|
|
|
|
$(call CompressLzma,$(KDIR)/vmlinux-$(1),$(KDIR)/vmlinux-$(1).lzma)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define MkImageLzma
|
|
|
|
mkimage -A mips -O linux -T kernel -a 0x80002000 -C lzma \
|
|
|
|
-e 0x80002000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
|
|
|
|
-d $(KDIR)/vmlinux-$(1).lzma $(KDIR)/uImage-$(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
cat $(KDIR)/uImage-$(2) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
|
|
|
$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-64k
|
|
|
|
dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=64k conv=sync
|
|
|
|
cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-128k
|
|
|
|
dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=128k conv=sync
|
|
|
|
cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-256k
|
|
|
|
dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=256k conv=sync
|
|
|
|
cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel/Template
|
|
|
|
$(call PatchKernelLzma,$(1),$(if $(2),$(2) machtype=$(1),))
|
|
|
|
$(call MkImageLzma,$(1))
|
|
|
|
$(CP) $(KDIR)/uImage-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage
|
|
|
|
endef
|
|
|
|
|
2011-07-07 18:20:37 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_danube),y)
|
2011-02-01 14:37:35 +00:00
|
|
|
define Image/BuildKernel/Profile/EASY50712
|
|
|
|
$(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/EASY50712
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50712)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel/Profile/EASY50812
|
|
|
|
$(call Image/BuildKernel/Template,EASY50812,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/EASY50812
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50812)
|
|
|
|
endef
|
|
|
|
|
2011-03-11 08:19:53 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV3527P
|
|
|
|
$(call Image/BuildKernel/Template,ARV3527P,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV3527P
|
|
|
|
$(call Image/Build/$(1),$(1),ARV3527P)
|
|
|
|
endef
|
|
|
|
|
2011-03-14 07:33:23 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV4510PW
|
|
|
|
$(call Image/BuildKernel/Template,ARV4510PW,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV4510PW
|
|
|
|
$(call Image/Build/$(1),$(1),ARV4510PW)
|
|
|
|
endef
|
|
|
|
|
2011-02-04 22:49:52 +00:00
|
|
|
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
|
|
|
|
|
2011-07-17 19:27:44 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV7525PW
|
|
|
|
$(call Image/BuildKernel/Template,ARV7525PW,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV7525PW
|
|
|
|
$(call Image/Build/$(1),$(1),ARV7525PW)
|
|
|
|
endef
|
|
|
|
|
2011-02-04 22:49:52 +00:00
|
|
|
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
|
|
|
|
|
2011-03-29 06:20:00 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV7518PW
|
|
|
|
$(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV7518PW
|
|
|
|
$(call Image/Build/$(1),$(1),ARV7518PW)
|
|
|
|
endef
|
|
|
|
|
2011-07-17 19:27:44 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV752DPW
|
|
|
|
$(call Image/BuildKernel/Template,ARV752DPW,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV752DPW
|
|
|
|
$(call Image/Build/$(1),$(1),ARV752DPW)
|
|
|
|
endef
|
|
|
|
|
2011-02-01 14:37:35 +00:00
|
|
|
define Image/BuildKernel/Profile/ARV752DPW22
|
|
|
|
$(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/ARV752DPW22
|
|
|
|
$(call Image/Build/$(1),$(1),ARV752DPW22)
|
|
|
|
endef
|
|
|
|
|
2011-06-12 08:56:26 +00:00
|
|
|
define Image/BuildKernel/Profile/GIGASX76X
|
|
|
|
$(call Image/BuildKernel/Template,GIGASX76X,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/GIGASX76X
|
|
|
|
$(call Image/Build/$(1),$(1),GIGASX76X)
|
|
|
|
endef
|
|
|
|
|
2011-02-01 14:37:35 +00:00
|
|
|
define Image/BuildKernel/Profile/Generic
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/BuildKernel/Template,EASY4010,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,EASY50812,$(xway_cmdline))
|
2011-03-11 08:19:53 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV3527P,$(xway_cmdline))
|
2011-01-23 19:16:33 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV4510PW,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,ARV4518PW,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,ARV4520PW,$(xway_cmdline))
|
2011-02-01 14:37:35 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV452CPW,$(xway_cmdline))
|
2011-01-23 19:16:33 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV4525PW,$(xway_cmdline))
|
2011-07-17 19:27:44 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV7525PW,$(xway_cmdline))
|
2011-01-23 12:51:15 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline))
|
2011-02-01 14:37:35 +00:00
|
|
|
$(call Image/BuildKernel/Template,ARV752DPW,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline))
|
2011-06-12 08:56:26 +00:00
|
|
|
$(call Image/BuildKernel/Template,GIGASX76X,$(xway_cmdline))
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/BuildKernel/Template,NONE)
|
|
|
|
endef
|
|
|
|
|
2011-02-01 14:37:35 +00:00
|
|
|
define Image/Build/Profile/Generic
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/Build/$(1),$(1),EASY4010)
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50712)
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50812)
|
2011-03-11 08:19:53 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV3527P)
|
2011-01-23 19:16:33 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV4510PW)
|
|
|
|
$(call Image/Build/$(1),$(1),ARV4518PW)
|
|
|
|
$(call Image/Build/$(1),$(1),ARV4520PW)
|
2011-02-01 14:37:35 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV452CPW)
|
2011-01-23 19:16:33 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV4525PW)
|
2011-07-17 19:27:44 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV7525PW)
|
2011-01-23 12:51:15 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV7518PW)
|
2011-02-01 14:37:35 +00:00
|
|
|
$(call Image/Build/$(1),$(1),ARV752DPW)
|
|
|
|
$(call Image/Build/$(1),$(1),ARV752DPW22)
|
2011-06-12 08:56:26 +00:00
|
|
|
$(call Image/Build/$(1),$(1),GIGASX76X)
|
2011-07-07 18:20:31 +00:00
|
|
|
$(call Image/Build/$(1),$(1),NONE)
|
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_ar9),y)
|
2011-07-19 18:06:33 +00:00
|
|
|
define Image/BuildKernel/Profile/WBMR
|
|
|
|
$(call Image/BuildKernel/Template,WBMR,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/WBMR
|
|
|
|
$(call Image/Build/$(1),$(1),WBMR)
|
|
|
|
endef
|
|
|
|
|
2011-07-07 18:20:31 +00:00
|
|
|
define Image/BuildKernel/Profile/DGN3500B
|
|
|
|
$(call Image/BuildKernel/Template,DGN3500B,$(xway_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/DGN3500B
|
|
|
|
$(call Image/Build/$(1),$(1),DGN3500B)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel/Profile/Generic
|
2011-07-19 18:06:33 +00:00
|
|
|
$(call Image/BuildKernel/Template,WBMR,$(xway_cmdline))
|
2011-07-07 18:20:31 +00:00
|
|
|
$(call Image/BuildKernel/Template,DGN3500B,$(xway_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,NONE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/Generic
|
2011-07-19 18:06:33 +00:00
|
|
|
$(call Image/Build/$(1),$(1),WBMR)
|
2011-06-08 17:57:55 +00:00
|
|
|
$(call Image/Build/$(1),$(1),DGN3500B)
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/Build/$(1),$(1),NONE)
|
2011-02-01 14:37:35 +00:00
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
|
2010-12-12 22:57:16 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2011-07-03 17:38:11 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_falcon)$(CONFIG_TARGET_lantiq_falcon_stable),y)
|
2011-07-07 20:20:51 +00:00
|
|
|
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
|
|
|
|
|
2011-03-11 08:19:53 +00:00
|
|
|
define Image/BuildKernel/Profile/Generic
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline))
|
2011-03-11 08:19:53 +00:00
|
|
|
$(call Image/BuildKernel/Template,EASY98020,$(falcon_cmdline))
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/BuildKernel/Template,NONE)
|
|
|
|
endef
|
|
|
|
|
2011-03-11 08:19:53 +00:00
|
|
|
define Image/Build/Profile/Generic
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/Build/$(1),$(1),EASY98000)
|
2011-03-11 08:19:53 +00:00
|
|
|
$(call Image/Build/$(1),$(1),EASY98020)
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call Image/Build/$(1),$(1),NONE)
|
2011-03-11 08:19:53 +00:00
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
|
2010-12-12 22:57:16 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2011-05-29 21:19:26 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_ase),y)
|
|
|
|
define Image/BuildKernel/Profile/EASY50601
|
|
|
|
$(call Image/BuildKernel/Template,EASY50601,$(ase_cmdline))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/EASY50601
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50601)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel/Profile/Generic
|
|
|
|
$(call Image/BuildKernel/Template,EASY50601,$(ase_cmdline))
|
|
|
|
$(call Image/BuildKernel/Template,NONE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/Generic
|
|
|
|
$(call Image/Build/$(1),$(1),EASY50601)
|
|
|
|
$(call Image/Build/$(1),$(1),NONE)
|
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2011-02-01 14:37:35 +00:00
|
|
|
define Image/BuildKernel
|
|
|
|
$(call Image/BuildKernel/Profile/$(PROFILE))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
|
|
|
$(call Image/Build/Profile/$(PROFILE),$(1))
|
|
|
|
endef
|
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
$(eval $(call BuildImage))
|