summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2025-10-02 12:09:23 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-10-14 11:24:57 +0100
commit47f6bd30b4088ccad1079f0f012cb39868fee10a (patch)
tree8aeb8ac8a25b707cbc5b23b4e5682c4e5598ed3e /bitbake
parent32a3828d590bfb1f38b05beabc58754c025631a0 (diff)
downloadpoky-47f6bd30b4088ccad1079f0f012cb39868fee10a.tar.gz
bitbake: bitbake-setup: suggest "." instead of "source"
"." is in POSIX standard[0], whereas "source" is only supported in more feature-full shells (bash, zsh, ...) [0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#dot (Bitbake rev: 22c5fe7b2de74841e86d28a81143bd1a717518d9) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/bitbake-setup2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-setup b/bitbake/bin/bitbake-setup
index 1fbb65494b..51d9503c4a 100755
--- a/bitbake/bin/bitbake-setup
+++ b/bitbake/bin/bitbake-setup
@@ -219,7 +219,7 @@ The bitbake configuration files (local.conf, bblayers.conf and more) can be foun
219 f.write(readme) 219 f.write(readme)
220 print("Usage instructions and additional information are in\n {}\n".format(readme_file)) 220 print("Usage instructions and additional information are in\n {}\n".format(readme_file))
221 print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir)) 221 print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir))
222 print("To run builds, source the environment using\n source {}".format(init_script)) 222 print("To run builds, source the environment using\n . {}".format(init_script))
223 223
224def get_registry_config(registry_path, id): 224def get_registry_config(registry_path, id):
225 for root, dirs, files in os.walk(registry_path): 225 for root, dirs, files in os.walk(registry_path):