From 3617fcdfd0f232dcaff4a153e667c26445b2077c Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Thu, 22 May 2025 15:07:54 -0600 Subject: [PATCH] README: Update instructions to fix warning In README instructions DISTRO variable assigment doesn't have whitespace, due to this bitbake throws the warning messages as shown below. WARNING: /scratch/sandeep/yocto/yp-master/build-zep/conf/local.conf:291 has a lack of whitespace around the assignment: 'DISTRO="zephyr"' Hence update instructions to fix warning messages. Signed-off-by: Sandeep Gundlupet Raju Signed-off-by: Lee Chee Yang --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 2dbe1b3..3dbc9aa 100644 --- a/README.txt +++ b/README.txt @@ -24,7 +24,7 @@ Building and Running Zephyr Samples You can build Zephyr samples. There are several sample recipes. To use the Yocto toolchain, modify local conf by adding: - DISTRO="zephyr" + DISTRO = "zephyr" To use the Zephyr pre-built toolchain, modify local conf by adding: ZEPHYR_TOOLCHAIN_VARIANT = "zephyr"