From c83821a1024b4863090c0150e131dbe6b06a4d6e Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Sun, 17 Nov 2013 20:25:45 -0800 Subject: [PATCH] fix(cros-kernel2.eclass): Explicitly build bzImage in second pass Build only bzImage instead of the default 'all' which also will re-link all of the modules which is pointless and just causes the initramfs and rootfs to become out of sync. --- .../src/third_party/coreos-overlay/eclass/cros-kernel2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/eclass/cros-kernel2.eclass b/sdk_container/src/third_party/coreos-overlay/eclass/cros-kernel2.eclass index 8519182aed..9e66216f24 100644 --- a/sdk_container/src/third_party/coreos-overlay/eclass/cros-kernel2.eclass +++ b/sdk_container/src/third_party/coreos-overlay/eclass/cros-kernel2.eclass @@ -157,8 +157,8 @@ cros-kernel2_src_compile() { modules_install update_bootengine_cpio "${bootengine_root}" - # Build the final kernel image (bzImage) - kmake + # Build the final kernel image + kmake bzImage } cros-kernel2_src_install() {