Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bazel run //:docs_combo_experimental
> Please refer to the README documents in the respective sub-directories for details about the specific integration.
- [QNX](./images/qnx_x86_64//README.md)
- [Red Hat AutoSD](./images/autosd_x86_64/build/README.md)
- [Red Hat AutoSD](./images/autosd/)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sections says there should be README reference, could you add it?

Copy link
Copy Markdown
Contributor Author

@dirkmacke dirkmacke May 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am new to this, but the QEMU build seems not to be included - that's what I tried to build, but it failed. The existing target - //images/autosd does build a container. Renaming of //image/.. fixed the build issue, but I thought the menu in score_startershould correctly mention, that a container is being build.

So the docker build is actually what's there, QEMU seems to be missing (unless the container actually runs QEMU inside... didn't go that deep, TBH, trying to learn the ropes). As for our purposes, the container is actually very convenient, so it should stay.

The README.md reference is the line I changed, so that it correctly refers to ./images/autosd instead of .../autosd_x86_64/....

- [Elektrobit corbos Linux for Safety Applications](./images/ebclfsa_aarch64/README.md)
- Linux x86_64

Expand Down
2 changes: 1 addition & 1 deletion runners/docker_x86_64/scripts/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sh_library(
name = "run_docker",
srcs = ["run_docker.sh"],
visibility = [
"//images/auto_x86_64:__pkg__",
"//images/autosd:__pkg__",
"//images/linux_x86_64:__pkg__",
],
deps = ["@rules_shell//shell/runfiles"],
Expand Down
4 changes: 2 additions & 2 deletions score_starter
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ mEntries = [
"eb-aarch64",
),
(
"Run Autosd x86_64 QEMU",
"bazel --output_base=build/autosd-x86_64 run --config autosd-x86_64 //images/autosd_x86_64:run",
"Run AutoSD x86_64 Docker",
"bazel --output_base=build/autosd-x86_64 run --config autosd-x86_64 //images/autosd:run",
"autosd-x86_64",
),
("Exit", "exit 0", "exit"),
Expand Down
Loading