From d49059a31b7aa6f3b4ed64d4fa0f0ba487bd2908 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Tue, 28 Jul 2020 10:46:25 -0700 Subject: [PATCH] README: Fix copy command when using config from Cloud-hypervisor The command which is mentioned in the README is wrong. We have two cofigs one for x86_64 and another for aarh64. Previously it was a single config. After adding the configs the read me was not modified. This patch fixes the issue. Signed-off-by: Muminul Islam --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 560f89563..f7a73a286 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ $ git clone --depth 1 https://github.com/cloud-hypervisor/linux.git -b virtio-fs $ pushd linux-cloud-hypervisor # Use the cloud-hypervisor kernel config to build your kernel -$ cp $CLOUDH/cloud-hypervisor/resources/linux-config .config +$ cp $CLOUDH/cloud-hypervisor/resources/linux-config-x86_64 .config $ make bzImage -j `nproc` $ popd ```