diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-26 11:45:23 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-26 11:45:23 +0000 |
commit | d3ec79b469def74964552c69d8e6f13b61fff428 (patch) | |
tree | 20958fddd3344d0c6bd2eb5df0e728bbe702c404 /target/image/brcm63xx | |
parent | 539e5f19d6bc417179b729466077adb6fc449720 (diff) |
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
Diffstat (limited to 'target/image/brcm63xx')
-rw-r--r-- | target/image/brcm63xx/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/target/image/brcm63xx/Makefile b/target/image/brcm63xx/Makefile new file mode 100644 index 0000000000..19799e88af --- /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)) |