summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2006-08-25 09:28:15 +0000
committerFlorian Fainelli <florian@openwrt.org>2006-08-25 09:28:15 +0000
commit072b31105fa0b5eabdc6b5d9fdefb04edc5b4627 (patch)
treecd20c6c13221f7be2436767f9421e7f377fd7644
parent689b7e26d28404369f81068b65c9354a0a9366e3 (diff)
downloadmtk-20170518-072b31105fa0b5eabdc6b5d9fdefb04edc5b4627.zip
mtk-20170518-072b31105fa0b5eabdc6b5d9fdefb04edc5b4627.tar.gz
mtk-20170518-072b31105fa0b5eabdc6b5d9fdefb04edc5b4627.tar.bz2
Override kernel template and output bzImage, not the binary file, closes #676 and #714
SVN-Revision: 4658
-rw-r--r--openwrt/target/image/x86/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/target/image/x86/Makefile b/openwrt/target/image/x86/Makefile
index d9ed294..919ccbc 100644
--- a/openwrt/target/image/x86/Makefile
+++ b/openwrt/target/image/x86/Makefile
@@ -9,7 +9,7 @@ include $(INCLUDE_DIR)/image.mk
define Image/Build
cp $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
- cp $(KDIR)/vmlinux $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
+ cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
endef
$(eval $(call BuildImage))