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 <geoff@infradead.org>
This commit is contained in:
Geoff Levand 2015-06-17 16:57:58 -07:00
parent c5a40440c2
commit 94c7ed9a88

View File

@ -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() {