From 94c7ed9a8892c631555fee9a25c7d1cb7d924c4b Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Wed, 17 Jun 2015 16:57:58 -0700 Subject: [PATCH] eclass/coreos-kernel: Remove architecture specifics The bzImage format is architecture specific. The default x86_64 make target will generate a bzImage, so using the default make target should be sufficient for x86_64 builds. Fixes build errors like these: make: *** No rule to make target 'bzImage'. Signed-off-by: Geoff Levand --- .../third_party/coreos-overlay/eclass/coreos-kernel.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/eclass/coreos-kernel.eclass b/sdk_container/src/third_party/coreos-overlay/eclass/coreos-kernel.eclass index e9bc5272e9..cbfe6bb286 100644 --- a/sdk_container/src/third_party/coreos-overlay/eclass/coreos-kernel.eclass +++ b/sdk_container/src/third_party/coreos-overlay/eclass/coreos-kernel.eclass @@ -65,7 +65,7 @@ get_bootengine_lib() { # @FUNCTION: update_bootengine_cpio # @DESCRIPTION: # Append files in the given directory to the bootengine cpio. -# Allows us to stick kernel modules into the initramfs built into bzImage. +# Allows us to stick kernel modules into the initramfs built into the image. update_bootengine_cpio() { local extra_root="$1" local cpio_path="${KBUILD_OUTPUT}/bootengine.cpio" @@ -153,7 +153,7 @@ coreos-kernel_src_compile() { update_bootengine_cpio "${bootengine_root}" # Build the final kernel image - kmake bzImage + kmake } coreos-kernel_src_install() {