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 <keiichiw@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Kameron Lutes <kalutes@chromium.org>
This commit is contained in:
Kameron Lutes 2022-04-04 22:25:53 +00:00 committed by Chromeos LUCI
parent 7b7a20620f
commit cd0e7edcc7

View file

@ -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
```