Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ci-images
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SECO Northern Europe
Yocto
infrastructure
ci-images
Merge requests
!39
Mcu xpresso
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Mcu xpresso
mcu-xpresso
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Jonas Höppner
requested to merge
mcu-xpresso
into
master
10 months ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
24a141b9
2 commits,
10 months ago
2 files
+
34
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
mcuxpresso-sdk/mcux_2.14.0/Dockerfile
0 → 100644
+
33
−
0
Options
# 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