From 875c81f2aeaa974d2ef0e1f0e62e9a37dd4f6060 Mon Sep 17 00:00:00 2001 From: Oliver Pajonk Date: Mon, 22 Dec 2025 11:35:06 +0100 Subject: [PATCH 1/2] Update README with OS Integration Details, exclude them from main Bazel project Since the OS integrations are currently realized as separate Bazel projects, and contain individual documentation, this should be reflected in the main README. Also, the sub-directories should be excluded explicitly from the top-level Bazel project. For this, the https://bazel.build/run/bazelrc#bazelignore is updated. # Conflicts: # README.md --- .bazelignore | 2 ++ README.md | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/.bazelignore b/.bazelignore index 1dc4fc5817..ee0205ffc2 100644 --- a/.bazelignore +++ b/.bazelignore @@ -1 +1,3 @@ +autosd +ebclfsa qnx_qemu diff --git a/README.md b/README.md index 2946b1237e..e2d0021c4f 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,16 @@ Execute `bazel query //feature_showcase/...` to obtain list of targets that You bazel build --config bl-x86_64-linux @score_orchestrator//src/... --verbose_failures ``` +## Operating system integrations + +> [!NOTE] +> Integrations of Eclipse S-CORE into reference operating systems are currently realized as **independent Bazel projects**. +> Please refer to the README documents in the respective sub-directories for details about the specific integration. + +* [QNX](./qnx_qemu/README.md) +* [Red Hat AutoSD](./autosd/build/README.md) +* [Elektrobit corbos Linux for Safety Applications](./ebclfsa/README.md) + ## Workspace support You can obtain a complete S-CORE workspace, i.e. a git checkout of all modules from `known_good.json`, on the specific branches / commits, integrated into one Bazel build. From 4c151700bfed14956962692a605e3fcd985c88f0 Mon Sep 17 00:00:00 2001 From: Oliver Pajonk Date: Mon, 22 Dec 2025 13:38:01 +0100 Subject: [PATCH 2/2] fix: outdated module name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2d0021c4f..e2f67be8f3 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ bazel build --config bl-x86_64-linux @score_baselibs//score/... --verbose_failur ### Communication ```bash -bazel build --config bl-x86_64-linux @communication//score/mw/com:com --verbose_failures +bazel build --config bl-x86_64-linux @score_communication//score/mw/com:com --verbose_failures ``` ### Persistency