diff options
| author | Tom Rini <[email protected]> | 2026-01-23 14:21:28 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-01-23 14:55:32 -0600 |
| commit | 8de6e8f8a076d2c9b6d38d8563db135c167077ec (patch) | |
| tree | 8f92fb64e9b68ebf0866ce74b4f1b0e598fc1352 /tools/docker/Dockerfile | |
| parent | 64662b99c0ebc56c2773ca32a20aa055d25719f7 (diff) | |
| parent | b0df2df8d4787b60214987d06fff1410beca26fb (diff) | |
Merge patch series "sc5xx: Add complete board support for all ADI SC5xx boards"
Greg Malysa <[email protected]> says:
This series adds the final pieces to enable mainline U-Boot to build and
boot all Analog Devices SC5xx SoCs and supports the associated carrier
board options. At this point it should be viable for new users for these
platforms to start with the latest version of U-Boot rather than our
vendor fork, however some features (such as OSPI support and falcon
boot) remain unavailable until we are able to unify our implementations
with the mainline implementations.
Link: https://lore.kernel.org/r/[email protected]
[trini: Rebuild CI containers to have new tools]
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'tools/docker/Dockerfile')
| -rw-r--r-- | tools/docker/Dockerfile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 06666339d60..21f0369275c 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -334,6 +334,22 @@ RUN wget -O - https://coreboot.org/releases/coreboot-25.03.tar.xz | tar -C /tmp sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/ && \ rm -rf /tmp/coreboot-25.03 +# Build ldr tool for Analog Devices boards and create prefixed symlinks to match +# $(CROSS_COMPILE) as used by different supported platforms +RUN git clone --depth=1 -b v1.0.2 https://github.com/analogdevicesinc/adsp-ldr.git /opt/adi-adsp-ldr && \ + cd /opt/adi-adsp-ldr && \ + python3 -m venv venv && \ + . venv/bin/activate && \ + pip install meson && \ + meson setup build && \ + cd build && \ + meson compile && \ + cd .. && \ + ln -s build/ldr arm-linux-gnueabi-ldr && \ + ln -s build/ldr aarch64-linux-ldr && \ + deactivate +ENV PATH="${PATH}:/opt/adi-adsp-ldr" + # Create our user/group RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot RUN useradd -m -U uboot |
