mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 14:35:19 +02:00
d1d400f1ad
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3987 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
768 B
Makefile
26 lines
768 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
LINUX_VERSION:=2.6.17
|
|
LINUX_RELEASE:=1
|
|
LINUX_KERNEL_MD5SUM:=37ddefe96625502161f075b9d907f21e
|
|
|
|
include ../rules.mk
|
|
include ./config
|
|
|
|
include ../generic-$(KERNEL)/modules.mk
|
|
include ../kernel.mk
|
|
|
|
|
|
$(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked
|
|
[ -d ../generic-$(KERNEL)/patches ] && $(PATCH) $(LINUX_DIR) ../generic-$(KERNEL)/patches
|
|
[ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches
|
|
@$(CP) config $(LINUX_DIR)/.config
|
|
touch $@
|
|
|
|
$(LINUX_BUILD_DIR)/zImage.flash.srec: $(LINUX_DIR)/vmlinux
|
|
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
|
|
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
|
|
touch $@
|
|
|
|
compile: $(LINUX_BUILD_DIR)/zImage.flash.srec
|