Merge premilinary Broadcom 63xx support (Livebox, Siemens SE515...)
[openwrt.git] / target / image / brcm63xx / Makefile
1 include $(TOPDIR)/rules.mk
2 include $(INCLUDE_DIR)/image.mk
3
4 LOADADDR = 0x8108c8f4           # RAM start + 16M 
5 KERNEL_ENTRY = 0x80100000       # Default kernel entry in arch/mips/Makefile
6 RAMSIZE = 0x01000000            # 64MB
7
8 LOADER_MAKEOPTS= \
9                 KDIR=$(KDIR) \
10                 LOADADDR=$(LOADADDR) \
11                 KERNEL_ENTRY=$(KERNEL_ENTRY) \
12                 RAMSIZE=$(RAMSIZE)
13
14 define Build/Clean
15         $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) clean
16 endef
17
18 define Image/Prepare
19         cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
20         $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) compile
21 endef
22
23 define Image/Build
24         cp $(KDIR)/vmlinux $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
25 endef
26
27 $(eval $(call BuildImage))