From: florian Date: Fri, 25 Aug 2006 09:28:15 +0000 (+0000) Subject: Override kernel template and output bzImage, not the binary file, closes #676 and... X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/28b6b57ae89f7d26dedfa4c85e9a3e4cd6b48ebe Override kernel template and output bzImage, not the binary file, closes #676 and #714 git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4658 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/image/x86/Makefile b/target/image/x86/Makefile index d9ed29457..919ccbc9f 100644 --- a/target/image/x86/Makefile +++ b/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))