From 82e2f3c8082e115ccbc6bbb4ad0579b13d3ebf11 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Fri, 15 Mar 2013 16:11:45 +0000 Subject: [PATCH] mpc85xx: add profile and build image for the TL-WDR4900 v1 board Now that the ethernet switch is working, create firmware images to make impatient users happy. Signed-off-by: Gabor Juhos SVN-Revision: 36051 --- target/linux/mpc85xx/image/Makefile | 48 ++++++++++++++++++++++-- target/linux/mpc85xx/profiles/tp-link.mk | 18 +++++++++ 2 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 target/linux/mpc85xx/profiles/tp-link.mk diff --git a/target/linux/mpc85xx/image/Makefile b/target/linux/mpc85xx/image/Makefile index 0826cfb27b..40db1dfcfe 100644 --- a/target/linux/mpc85xx/image/Makefile +++ b/target/linux/mpc85xx/image/Makefile @@ -7,8 +7,26 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -DTS_TARGETS = mpc8548cds_32b p1010rdb -BOOT_IMAGES:=zImage +define imgname +$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(patsubst jffs2-%,jffs2,$(patsubst squashfs-%,squashfs,$(1))) +endef + +define sysupname +$(call imgname,$(1),$(2))-sysupgrade.bin +endef + +define factoryname +$(call imgname,$(1),$(2))-factory.bin +endef + +ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) + IMAGE_SUFFIX=-initramfs +endif + +zImage:=$(BIN_DIR)/$(IMG_PREFIX)-zImage$(IMAGE_SUFFIX) + +DTS_TARGETS = mpc8548cds_32b p1010rdb tl-wdr4900-v1 +BOOT_IMAGES:=zImage cuImage.tl-wdr4900-v1 define Image/Prepare $(foreach image,$(BOOT_IMAGES), @@ -17,12 +35,33 @@ define Image/Prepare endef define Image/BuildKernel - cp $(KDIR)/zImage $(BIN_DIR)/$(IMG_PREFIX)-zImage + cp $(KDIR)/zImage $(zImage) $(foreach dts,$(DTS_TARGETS), $(LINUX_DIR)/scripts/dtc/dtc -I dts -O dtb $(LINUX_DIR)/arch/powerpc/boot/dts/$(dts).dts > $(BIN_DIR)/$(IMG_PREFIX)-$(dts).fdt ) endef +define Image/Build/TPLINK + -$(STAGING_DIR_HOST)/bin/mktplinkfw \ + -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) \ + -k $(KDIR)/$(3) \ + -r $(KDIR)/root.$(1) \ + -o $(call factoryname,$(1),$(2)) + -$(STAGING_DIR_HOST)/bin/mktplinkfw \ + -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) -s \ + -k $(KDIR)/$(3) \ + -r $(KDIR)/root.$(1) \ + -o $(call sysupname,$(1),$(2)) +endef + +define Image/Build/Profile/TLWDR4900 + $(call Image/Build/TPLINK,$(1),tl-wdr4900-v1,cuImage.tl-wdr4900-v1,0x49000001,1,16Mppc) +endef + +define Image/Build/Profile/Default + $(call Image/Build/Profile/TLWDR4900,$(1)) +endef + define Image/Build/ext2 cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-ext2.img endef @@ -32,8 +71,11 @@ define Image/Build/squashfs cp $(KDIR)/root.squashfs $(BIN_DIR)/$(IMG_PREFIX)-root.squashfs endef +PROFILE ?= Default + define Image/Build $(call Image/Build/$(1),$(1)) + $(call Image/Build/Profile/$(PROFILE),$(1)) endef $(eval $(call BuildImage)) diff --git a/target/linux/mpc85xx/profiles/tp-link.mk b/target/linux/mpc85xx/profiles/tp-link.mk new file mode 100644 index 0000000000..57981d377c --- /dev/null +++ b/target/linux/mpc85xx/profiles/tp-link.mk @@ -0,0 +1,18 @@ +# +# Copyright (C) 2013 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/TLWDR4900 + NAME:=TP-Link TL-WDR4900 + PACKAGES:=\ + kmod-usb-core kmod-usb2 kmod-usb2-fsl \ + kmod-ath9k kmod-wpad +endef + +define Profile/TLWDR4900/Description + Package set optimized for the TP-Link TL-WDR4900. +endef +$(eval $(call Profile,TLWDR4900)) -- 2.30.2