Skip to content
Snippets Groups Projects

Mcu xpresso

Merged Jonas Höppner requested to merge mcu-xpresso into master
2 files
+ 34
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 33
0
# Image to build M4 M7 images using the mcuxpresso sdk from NXP
# mainly according to
# https://blog.lazy-evaluation.net/posts/embedded/imx8mm-evk-m4-intro.html
#
FROM debian:sid
USER root
RUN apt-get update
RUN apt-get install -y \
cmake \
gcc-arm-none-eabi \
gdb-multiarch \
git \
python3 \
python3-full \
python3-pip \
python3-venv \
vim
RUN useradd -ms /bin/bash work
USER work
WORKDIR /home/work
ENV ARMGCC_DIR=/usr
RUN python3 -m venv venv
ENV PATH="/home/work/venv/bin:${PATH}"
RUN pip3 install -U west
RUN west init -m https://github.com/NXPmicro/mcux-sdk --mr MCUX_2.14.0 mcuxsdk
WORKDIR /home/work/mcuxsdk
RUN west update
Loading