From 8b8daf571ae66d4546705d3e941f3a102a4ad679 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 18 Jan 2022 09:04:46 +0000 Subject: [PATCH] README: Ensure kernel build includes the ELF PVH note See: #3222 Signed-off-by: Rob Bradford --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f0890ef6..decdd5bf4 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ - [Architectures](#architectures) - [Guest OS](#guest-os) - [2. Getting Started](#2-getting-started) + - [Preparation](#preparation) - [Install prerequisites](#install-prerequisites) - [Clone and build](#clone-and-build) - [Containerized builds and tests](#containerized-builds-and-tests) @@ -190,7 +191,7 @@ $ pushd linux-cloud-hypervisor # Use the cloud-hypervisor kernel config to build your kernel $ cp $CLOUDH/cloud-hypervisor/resources/linux-config-x86_64 .config -$ make bzImage -j `nproc` +$ KCFLAGS="-Wa,-mx86-used-note=no" make bzImage -j `nproc` $ popd ```