2010-12-12 22:57:16 +00:00
|
|
|
#
|
2012-03-25 08:50:09 +00:00
|
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
2010-12-12 22:57:16 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2012-12-15 02:00:20 +00:00
|
|
|
|
|
|
|
# boards missing since devicetree update
|
|
|
|
#EASY50712 ARV3527P GIGASX76X ARV4519PW BTHOMEHUBV2B BTHOMEHUBV2BOPENRG
|
|
|
|
#WBMR P2601HNFX H201L
|
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
|
|
|
JFFS2_BLOCKSIZE = 64k 128k 256k
|
|
|
|
|
|
|
|
define CompressLzma
|
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e $(1) $(2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define PatchKernelLzma
|
|
|
|
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
|
2012-11-02 20:07:47 +00:00
|
|
|
$(LINUX_DIR)/scripts/dtc/dtc -O dtb -o $(KDIR)/$(1).dtb ./$(1).dts
|
|
|
|
$(STAGING_DIR_HOST)/bin/patch-dtb $(KDIR)/vmlinux-$(1) $(KDIR)/$(1).dtb
|
2010-12-12 22:57:16 +00:00
|
|
|
$(call CompressLzma,$(KDIR)/vmlinux-$(1),$(KDIR)/vmlinux-$(1).lzma)
|
|
|
|
endef
|
|
|
|
|
2013-04-11 19:18:07 +00:00
|
|
|
define PatchKernelRaw
|
|
|
|
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
|
|
|
|
$(LINUX_DIR)/scripts/dtc/dtc -O dtb -o $(KDIR)/$(1).dtb ./$(1).dts
|
|
|
|
$(STAGING_DIR_HOST)/bin/patch-dtb $(KDIR)/vmlinux-$(1) $(KDIR)/$(1).dtb
|
|
|
|
endef
|
|
|
|
|
2012-02-14 17:48:04 +00:00
|
|
|
define MkBrnImage
|
|
|
|
mkbrncmdline -i $(KDIR)/vmlinux-$(4) -o $(KDIR)/vmlinux-$(4)-brn BRN-BOOT $(6)
|
|
|
|
$(call CompressLzma,$(KDIR)/vmlinux-$(4)-brn,$(KDIR)/vmlinux-$(4)-brn.lzma)
|
|
|
|
mkbrnimg -s $(1) -m $(2) -o $(3) $(KDIR)/vmlinux-$(4)-brn.lzma $(KDIR)/root.$(5)
|
|
|
|
endef
|
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
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
|
|
|
|
|
2012-03-25 08:50:09 +00:00
|
|
|
define MkImageEVA
|
|
|
|
lzma2eva 0x80002000 0x80002000 $(KDIR)/vmlinux-$(1).lzma $(KDIR)/$(1).eva.prealign
|
|
|
|
dd if=$(KDIR)/$(1).eva.prealign of=$(KDIR)/$(1).eva bs=64k conv=sync
|
|
|
|
cat ./eva.dummy.squashfs >> $(KDIR)/$(1).eva
|
|
|
|
endef
|
|
|
|
|
2012-07-31 18:49:54 +00:00
|
|
|
define CompressGzip
|
|
|
|
gzip -c $(1) > $(2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define PatchKernelGzip
|
|
|
|
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
|
|
|
|
$(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(1) '$(strip $(2))'
|
|
|
|
$(call CompressGzip,$(KDIR)/vmlinux-$(1),$(KDIR)/vmlinux-$(1).gzip)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define MkImageGzip
|
|
|
|
mkimage -A mips -O linux -T kernel -a 0x80002000 -C gzip \
|
|
|
|
-e 0x80002000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
|
|
|
|
-d $(KDIR)/vmlinux-$(1).gzip $(KDIR)/uImage-$(1)
|
|
|
|
endef
|
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
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)
|
2012-02-14 17:48:04 +00:00
|
|
|
$(if $(3),$(call MkBrnImage,$(3),$(4),$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(3)-brnImage,$(2),$(1),$(5)))
|
2010-12-12 22:57:16 +00:00
|
|
|
endef
|
|
|
|
|
2012-03-25 08:50:09 +00:00
|
|
|
define Image/BuildEVA/squashfs
|
|
|
|
cat $(KDIR)/$(2).eva $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva
|
|
|
|
$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva)
|
|
|
|
endef
|
|
|
|
|
2013-04-11 19:18:07 +00:00
|
|
|
define Image/BuildRaw/squashfs
|
|
|
|
dd if=$(KDIR)/vmlinux-$(2) of=$(KDIR)/vmlinux-$(2)-$(1) bs=1M conv=sync
|
|
|
|
cat $(KDIR)/vmlinux-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
|
|
|
$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image)
|
|
|
|
endef
|
|
|
|
|
2013-03-14 18:43:34 +00:00
|
|
|
define Image/BuildNANDEVA/jffs2-128k
|
|
|
|
cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).rootfs
|
|
|
|
endef
|
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
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
|
|
|
|
|
2013-04-11 19:18:07 +00:00
|
|
|
define Image/BuildKernelRaw/Template
|
|
|
|
$(call PatchKernelRaw,$(1))
|
|
|
|
$(CP) $(KDIR)/vmlinux-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-vmlinux
|
|
|
|
endef
|
|
|
|
|
2012-03-25 08:50:09 +00:00
|
|
|
define Image/BuildKernelEVA/Template
|
|
|
|
$(call PatchKernelLzma,$(1),$(if $(2),$(2) machtype=$(1),))
|
|
|
|
$(call MkImageEVA,$(1))
|
|
|
|
$(CP) $(KDIR)/$(1).eva $(BIN_DIR)/$(IMG_PREFIX)-$(1).eva
|
|
|
|
endef
|
|
|
|
|
2012-07-31 18:49:54 +00:00
|
|
|
define Image/BuildKernelGzip/Template
|
|
|
|
$(call PatchKernelGzip,$(1),$(if $(2),$(2) machtype=$(1),))
|
|
|
|
$(call MkImageGzip,$(1))
|
|
|
|
$(CP) $(KDIR)/uImage-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage
|
|
|
|
endef
|
|
|
|
|
2012-03-25 08:50:32 +00:00
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_falcon),y)
|
2012-03-25 08:50:09 +00:00
|
|
|
|
2012-12-16 10:03:11 +00:00
|
|
|
Image/BuildKernel/Profile/EASY98000NOR=$(call Image/BuildKernel/Template,EASY98000NOR)
|
|
|
|
Image/Build/Profile/EASY98000NOR=$(call Image/Build/$(1),$(1),EASY98000NOR)
|
2012-03-25 08:50:09 +00:00
|
|
|
|
2012-12-16 10:03:11 +00:00
|
|
|
Image/BuildKernel/Profile/EASY98000SFLASH=$(call Image/BuildKernel/Template,EASY98000SFLASH)
|
|
|
|
Image/Build/Profile/EASY98000SFLASH=$(call Image/Build/$(1),$(1),EASY98000SFLASH)
|
2011-07-07 18:20:31 +00:00
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
endif
|
|
|
|
|
2011-07-07 20:20:51 +00:00
|
|
|
|
2010-12-12 22:57:16 +00:00
|
|
|
|
2011-05-29 21:19:26 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_ase),y)
|
|
|
|
|
2012-11-02 20:07:47 +00:00
|
|
|
Image/BuildKernel/Profile/DGN1000B=$(call Image/BuildKernel/Template,DGN1000B)
|
|
|
|
Image/Build/Profile/DGN1000B=$(call Image/Build/$(1),$(1),DGN1000B)
|
2011-05-29 21:19:26 +00:00
|
|
|
|
2012-11-02 20:07:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_xway),y)
|
2011-05-29 21:19:26 +00:00
|
|
|
|
2012-11-09 19:26:43 +00:00
|
|
|
# Danube
|
2012-12-15 02:00:20 +00:00
|
|
|
Image/BuildKernel/Profile/EASY50712=$(call Image/BuildKernel/Template,EASY50712)
|
|
|
|
Image/Build/Profile/EASY50712=$(call Image/Build/$(1),$(1),EASY50712)
|
|
|
|
|
2013-03-12 13:52:54 +00:00
|
|
|
Image/BuildKernel/Profile/ACMP252=$(call Image/BuildKernel/Template,ACMP252)
|
|
|
|
Image/Build/Profile/ACMP252=$(call Image/Build/$(1),$(1),ACMP252)
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
Image/BuildKernel/Profile/ARV4510PW=$(call Image/BuildKernel/Template,ARV4510PW)
|
|
|
|
Image/Build/Profile/ARV4510PW=$(call Image/Build/$(1),$(1),ARV4510PW)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/ARV4525PW=$(call Image/BuildKernel/Template,ARV4525PW)
|
|
|
|
Image/Build/Profile/ARV4525PW=$(call Image/Build/$(1),$(1),ARV4525PW)
|
|
|
|
|
2012-11-06 07:38:24 +00:00
|
|
|
Image/BuildKernel/Profile/ARV7525PW=$(call Image/BuildKernel/Template,ARV7525PW)
|
|
|
|
Image/Build/Profile/ARV7525PW=$(call Image/Build/$(1),$(1),ARV7525PW)
|
|
|
|
|
2013-01-28 17:42:59 +00:00
|
|
|
Image/BuildKernel/Profile/ARV4518PWR01=$(call Image/BuildKernel/Template,ARV4518PWR01)
|
|
|
|
Image/Build/Profile/ARV4518PWR01=$(call Image/Build/$(1),$(1),ARV4518PWR01)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/ARV4518PWR01A=$(call Image/BuildKernel/Template,ARV4518PWR01A)
|
|
|
|
Image/Build/Profile/ARV4518PWR01A=$(call Image/Build/$(1),$(1),ARV4518PWR01A)
|
2012-12-15 02:00:20 +00:00
|
|
|
|
2012-11-09 19:26:43 +00:00
|
|
|
Image/BuildKernel/Profile/ARV4520PW=$(call Image/BuildKernel/Template,ARV4520PW)
|
|
|
|
Image/Build/Profile/ARV4520PW=$(call Image/Build/$(1),$(1),ARV4520PW)
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
Image/BuildKernel/Profile/ARV452CQW=$(call Image/BuildKernel/Template,ARV452CQW)
|
|
|
|
Image/Build/Profile/ARV452CQW=$(call Image/Build/$(1),$(1),ARV452CQW)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/ARV7518PW=$(call Image/BuildKernel/Template,ARV7518PW)
|
|
|
|
Image/Build/Profile/ARV7518PW=$(call Image/Build/$(1),$(1),ARV7518PW)
|
|
|
|
|
2012-11-09 19:26:43 +00:00
|
|
|
Image/BuildKernel/Profile/ARV752DPW=$(call Image/BuildKernel/Template,ARV752DPW)
|
|
|
|
Image/Build/Profile/ARV752DPW=$(call Image/Build/$(1),$(1),ARV752DPW)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/ARV752DPW22=$(call Image/BuildKernel/Template,ARV752DPW22)
|
|
|
|
Image/Build/Profile/ARV752DPW22=$(call Image/Build/$(1),$(1),ARV752DPW22)
|
|
|
|
|
2012-03-25 08:50:09 +00:00
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
# AR9
|
2012-12-19 15:17:11 +00:00
|
|
|
Image/BuildKernel/Profile/DGN3500=$(call Image/BuildKernel/Template,DGN3500)
|
|
|
|
Image/Build/Profile/DGN3500=$(call Image/Build/$(1),$(1),DGN3500)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/DGN3500B=$(call Image/BuildKernel/Template,DGN3500)
|
|
|
|
Image/Build/Profile/DGN3500B=$(call Image/Build/$(1),$(1),DGN3500)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/WBMRA=$(call Image/BuildKernel/Template,WBMR)
|
|
|
|
Image/Build/Profile/WBMRA=$(call Image/Build/$(1),$(1),WBMR)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/WBMRB=$(call Image/BuildKernel/Template,WBMR)
|
|
|
|
Image/Build/Profile/WBMRB=$(call Image/Build/$(1),$(1),WBMR)
|
2012-07-31 18:49:54 +00:00
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
Image/BuildKernel/Profile/FRITZ7320=$(call Image/BuildKernelEVA/Template,FRITZ7320)
|
|
|
|
Image/Build/Profile/FRITZ7320=$(call Image/BuildEVA/$(1),$(1),FRITZ7320)
|
2012-07-31 18:49:54 +00:00
|
|
|
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
# VR9
|
|
|
|
Image/BuildKernel/Profile/EASY80920NAND=$(call Image/BuildKernel/Template,EASY80920NAND)
|
|
|
|
Image/Build/Profile/EASY80920NAND=$(call Image/Build/$(1),$(1),EASY80920NAND)
|
2012-07-31 18:49:54 +00:00
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
Image/BuildKernel/Profile/EASY80920NOR=$(call Image/BuildKernel/Template,EASY80920NOR)
|
|
|
|
Image/Build/Profile/EASY80920NOR=$(call Image/Build/$(1),$(1),EASY80920NOR)
|
2012-07-31 18:49:54 +00:00
|
|
|
|
2012-12-21 13:47:55 +00:00
|
|
|
Image/BuildKernel/Profile/FRITZ3370=$(call Image/BuildKernelEVA/Template,FRITZ3370)
|
2013-03-14 18:43:34 +00:00
|
|
|
Image/Build/Profile/FRITZ3370=$(call Image/BuildNANDEVA/$(1),$(1),FRITZ3370)
|
2012-12-21 13:47:55 +00:00
|
|
|
|
2013-04-11 19:18:07 +00:00
|
|
|
Image/BuildKernel/Profile/VG3503J=$(call Image/BuildKernelRaw/Template,VG3503J)
|
|
|
|
Image/Build/Profile/VG3503J=$(call Image/BuildRaw/$(1),$(1),VG3503J)
|
|
|
|
|
2012-07-31 18:49:54 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_lantiq_svip_be),y)
|
|
|
|
|
|
|
|
Image/BuildKernel/Profile/EASY33016=$(call Image/BuildKernelGzip/Template,EASY33016)
|
|
|
|
Image/Build/Profile/EASY33016=$(call Image/Build/$(1),$(1),EASY33016)
|
2012-07-31 18:49:54 +00:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-12-15 02:00:20 +00:00
|
|
|
|
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))
|