summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/image/Makefile
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-12-12 15:16:57 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-12-12 15:16:57 +0000
commit6473465573d95d57f9ad05183d3cadaf08d10b58 (patch)
treef8e3729f5f524755cddc6606eba0523b7f979789 /target/linux/brcm63xx/image/Makefile
parentfc54b9bf158eea9cae647ce2c58f7d9989af173a (diff)
Build images for Inventel Livebox
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13616 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/image/Makefile')
-rw-r--r--target/linux/brcm63xx/image/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile
index 44a5511da..883c6e5e2 100644
--- a/target/linux/brcm63xx/image/Makefile
+++ b/target/linux/brcm63xx/image/Makefile
@@ -37,6 +37,14 @@ define Image/Build/CFE
$(call prepare_generic_squashfs,$(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin)
endef
+define Image/Build/RedBoot
+ cp $(KDIR)/vmlinux.elf $(BIN_DIR)/openwrt-$(1)-vmlinux.elf
+ gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
+ $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.bin.l7
+ dd if=$(KDIR)/vmlinux.bin.l7 of=$(BIN_DIR)/openwrt-$(1)-vmlinux.lzma bs=65536 conv=sync
+ dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/openwrt-$(1)-vmlinux.gz bs=65536 conv=sync
+endef
+
define Build/Clean
$(MAKE) -C lzma-loader clean
endef
@@ -67,11 +75,11 @@ define Image/Prepare
rm -f $(KDIR)/fs_mark
touch $(KDIR)/fs_mark
$(call prepare_generic_squashfs,$(KDIR)/fs_mark)
-
endef
define Image/Build
$(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(1).trx -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
+ dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
$(call Image/Build/CFE,$(1),96345GW2,6345)
$(call Image/Build/CFE,$(1),96348GW,6348)
# Neufbox4
@@ -82,6 +90,8 @@ define Image/Build
$(call Image/Build/CFE,$(1),96348GW-10,6348)
# Sagem F@ST2404
$(call Image/Build/CFE,$(1),F@ST2404,6348)
+ # Inventel Livebox
+ $(call Image/Build/RedBoot,livebox)
endef
$(eval $(call BuildImage))