From cd0e7edcc75f3caf94f6df17b08d762c96f02901 Mon Sep 17 00:00:00 2001 From: Kameron Lutes Date: Mon, 4 Apr 2022 22:25:53 +0000 Subject: [PATCH] Docs: Fix kernel config build steps ChromeOS moved to using split config, so update the build steps for a custom kernel to reflect the new procedure. BUG=b:228107412 TEST=Follow the custom kernel rootfs steps with the new config steps Change-Id: Ib8f7d8748897fb6b907d0da4c25e2cccba1c5954 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3570172 Reviewed-by: Keiichi Watanabe Tested-by: kokoro Commit-Queue: Kameron Lutes --- docs/book/src/running_crosvm/custom_kernel_rootfs.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/book/src/running_crosvm/custom_kernel_rootfs.md b/docs/book/src/running_crosvm/custom_kernel_rootfs.md index d2637170fc..7e48000465 100644 --- a/docs/book/src/running_crosvm/custom_kernel_rootfs.md +++ b/docs/book/src/running_crosvm/custom_kernel_rootfs.md @@ -20,8 +20,9 @@ git clone --depth 1 -b chromeos-5.10 https://chromium.googlesource.com/chromiumo Either way that you get the kernel, the next steps are to configure and build the bzImage: -```bas -make chromiumos-container-vm-x86_64_defconfig +```bash +CHROMEOS_KERNEL_FAMILY=termina ./chromeos/scripts/prepareconfig container-vm-x86_64 +make olddefconfig make -j$(nproc) bzImage ```