File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11FROM ghcr.io/philips-software/amp-devcontainer-cpp:v6.5.0@sha256:ee6fc072861425a6492b13a588afe3b5d09c038f3335ff6e707fd70416edf932
22
3+ ARG SEGGER_JLINK_VERSION=V872a
4+
35HEALTHCHECK NONE
6+
7+ SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
8+
9+ RUN \
10+ # Install Segger JLinkGDBServer
11+ mkdir -p /opt/segger/jlink \
12+ && wget --post-data="accept_license_agreement=accepted" -qO - "https://www.segger.com/downloads/jlink/JLink_Linux_${SEGGER_JLINK_VERSION}_$(uname -m | sed 's/aarch64/arm64/').tgz" | tar --strip-components=1 --wildcards -xzC /opt/segger/jlink
13+
14+ RUN apt-get update && apt-get install -y --no-install-recommends libusb-1.0-0=2:1.0.27-1
Original file line number Diff line number Diff line change 6262 "svdFile" : " ${workspaceFolder}/amp-hal-st/STM32F407.svd" ,
6363 "servertype" : " jlink" ,
6464 "serverpath" : " /opt/segger/jlink/JLinkGDBServer" ,
65- "objdumpPath" : " arm-none-eabi-objdump"
65+ "objdumpPath" : " arm-none-eabi-objdump" ,
66+ "runToEntryPoint" : " main"
6667 }
6768 ]
6869}
You can’t perform that action at this time.
0 commit comments