README: Ensure kernel build includes the ELF PVH note

See: #3222

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-01-18 09:04:46 +00:00 committed by Sebastien Boeuf
parent 482e1ca435
commit 8b8daf571a

View File

@ -4,6 +4,7 @@
- [Architectures](#architectures) - [Architectures](#architectures)
- [Guest OS](#guest-os) - [Guest OS](#guest-os)
- [2. Getting Started](#2-getting-started) - [2. Getting Started](#2-getting-started)
- [Preparation](#preparation)
- [Install prerequisites](#install-prerequisites) - [Install prerequisites](#install-prerequisites)
- [Clone and build](#clone-and-build) - [Clone and build](#clone-and-build)
- [Containerized builds and tests](#containerized-builds-and-tests) - [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 # Use the cloud-hypervisor kernel config to build your kernel
$ cp $CLOUDH/cloud-hypervisor/resources/linux-config-x86_64 .config $ 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 $ popd
``` ```