From d3ec79b469def74964552c69d8e6f13b61fff428 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 26 Jun 2006 11:45:23 +0000 Subject: Merge premilinary Broadcom 63xx support (Livebox, Siemens SE515...) Kernel compiles fine, does not include linux-2.6.8.1 linux-mips specific fixes and neither includes broadcom changes to netfiler Needs testing of course :) git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4084 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/image/brcm63xx/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 target/image/brcm63xx/Makefile (limited to 'target/image/brcm63xx') diff --git a/target/image/brcm63xx/Makefile b/target/image/brcm63xx/Makefile new file mode 100644 index 000000000..19799e88a --- /dev/null +++ b/target/image/brcm63xx/Makefile @@ -0,0 +1,27 @@ +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/image.mk + +LOADADDR = 0x8108c8f4 # RAM start + 16M +KERNEL_ENTRY = 0x80100000 # Default kernel entry in arch/mips/Makefile +RAMSIZE = 0x01000000 # 64MB + +LOADER_MAKEOPTS= \ + KDIR=$(KDIR) \ + LOADADDR=$(LOADADDR) \ + KERNEL_ENTRY=$(KERNEL_ENTRY) \ + RAMSIZE=$(RAMSIZE) + +define Build/Clean + $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) clean +endef + +define Image/Prepare + cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma + $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) compile +endef + +define Image/Build + cp $(KDIR)/vmlinux $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img +endef + +$(eval $(call BuildImage)) -- cgit v1.2.3