trivial changes
[openwrt/staging/florian.git] / target / image / brcm63xx / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 LOADADDR = 0x8108c8f4 # RAM start + 16M
11 KERNEL_ENTRY = 0x80100000 # Default kernel entry in arch/mips/Makefile
12 RAMSIZE = 0x01000000 # 64MB
13
14 LOADER_MAKEOPTS= \
15 KDIR=$(KDIR) \
16 LOADADDR=$(LOADADDR) \
17 KERNEL_ENTRY=$(KERNEL_ENTRY) \
18 RAMSIZE=$(RAMSIZE)
19
20 define Build/Clean
21 $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) clean
22 endef
23
24 define Image/Prepare
25 cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
26 $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) compile
27 endef
28
29 define Image/Build
30 cp $(KDIR)/vmlinux $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
31 endef
32
33 $(eval $(call BuildImage))