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/linux/brcm63xx-2.6/Makefile | |
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/linux/brcm63xx-2.6/Makefile')
-rw-r--r-- | target/linux/brcm63xx-2.6/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/brcm63xx-2.6/Makefile b/target/linux/brcm63xx-2.6/Makefile new file mode 100644 index 000000000..a48442a69 --- /dev/null +++ b/target/linux/brcm63xx-2.6/Makefile @@ -0,0 +1,18 @@ +include $(TOPDIR)/rules.mk + +LINUX_VERSION:=2.6.8.1 +LINUX_RELEASE:=1 +LINUX_KERNEL_MD5SUM:=9517ca999e822b898fbdc7e72796b1aa + +include ./config +include $(INCLUDE_DIR)/kernel.mk +include $(INCLUDE_DIR)/kernel-build.mk + + +$(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked + #[ -d ../generic-$(KERNEL)/patches ] && $(PATCH) $(LINUX_DIR) ../generic-$(KERNEL)/patches $(MAKE_TRACE) + [ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches $(MAKE_TRACE) + @$(CP) config $(LINUX_DIR)/.config + @$(CP) ./files/built-in.o $(LINUX_DIR)/bcmdrivers/broadcom/ + touch $@ + |