From 90c987b6003487a61bd77c50625b6e72ee3f4ec1 Mon Sep 17 00:00:00 2001 From: Shiqing Gao Date: Fri, 3 Dec 2021 16:47:06 +0800 Subject: [PATCH] doc: simplify the command to build Zephyr for ACRN Simplify the build command using the west tool. Signed-off-by: Shiqing Gao --- doc/tutorials/using_zephyr_as_user_vm.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/tutorials/using_zephyr_as_user_vm.rst b/doc/tutorials/using_zephyr_as_user_vm.rst index cb7a579cb..31853c6fd 100644 --- a/doc/tutorials/using_zephyr_as_user_vm.rst +++ b/doc/tutorials/using_zephyr_as_user_vm.rst @@ -33,9 +33,7 @@ Steps for Using Zephyr as User VM .. code-block:: none $ cd samples/hello_world - $ mkdir build && cd build - $ cmake -DBOARD=acrn .. - $ make + $ west build -p auto -b acrn . This will build the application ELF binary in ``samples/hello_world/build/zephyr/zephyr.elf``.