Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dev-containers
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oleksii Kutuzov
dev-containers
Commits
eba3f3e9
Commit
eba3f3e9
authored
Jan 24, 2023
by
Oleksii Kutuzov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add initial Dockerfiles and build scripts
parent
52b53bbd
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
84 additions
and
0 deletions
+84
-0
fsl-imx-fb_4.14-sumo/Dockerfile
fsl-imx-fb_4.14-sumo/Dockerfile
+41
-0
fsl-imx-fb_4.14-sumo/build.sh
fsl-imx-fb_4.14-sumo/build.sh
+3
-0
fsl-imx-wayland_4.14-sumo_qt/Dockerfile
fsl-imx-wayland_4.14-sumo_qt/Dockerfile
+37
-0
fsl-imx-wayland_4.14-sumo_qt/build.sh
fsl-imx-wayland_4.14-sumo_qt/build.sh
+3
-0
No files found.
fsl-imx-fb_4.14-sumo/Dockerfile
0 → 100644
View file @
eba3f3e9
FROM
ubuntu:18.04
LABEL
name=fsl-imx-fb_4.14-sumo
LABEL
maintainer="oleksii.kutuzov@seco.com"
ENV
HOME /root
SHELL
["/bin/bash", "-c"]
ENV
FILE_NAME "fsl-imx-fb-glibc-x86_64-core-image-minimal-aarch64-toolchain-4.14-sumo"
ENV
FILE_SH "${FILE_NAME}.sh"
ENV
ZIP_NAME "${FILE_NAME}.zip"
ENV
FILE_URL "https://documentation.seco.com/service/lib/exe/fetch.php/service/linux/sdk/${ZIP_NAME}"
# Install dependencies
RUN
apt-get update
&&
\
apt-get
install
-y
\
zip
\
unzip
\
wget
\
build-essential
\
python3
\
git
\
flex
\
bison
\
libz-dev
# Unpack the SDK to /opt/fsl-imx-wayland/4.14-sumo
RUN
wget
--no-check-certificate
${
FILE_URL
}
&&
\
unzip
${
ZIP_NAME
}
&&
\
chmod
+x
${
FILE_SH
}
&&
\
./
${
FILE_SH
}
-y
&&
\
rm
-f
${
FILE_SH
}
&&
\
rm
-f
${
ZIP_NAME
}
# Set dev mount repositories as safe
RUN
git config
--global
--add
safe.directory /mnt/dev/imx-mkimage
&&
\
git config
--global
--add
safe.directory /mnt/dev/uboot-imx
# Set environment
RUN
echo
'. /opt/fsl-imx-fb/4.14-sumo/environment-setup-aarch64-poky-linux'
>>
~/.bashrc
\ No newline at end of file
fsl-imx-fb_4.14-sumo/build.sh
0 → 100755
View file @
eba3f3e9
#!/bin/bash
docker build
-t
fsl-imx-fb_4.14-sumo .
\ No newline at end of file
fsl-imx-wayland_4.14-sumo_qt/Dockerfile
0 → 100644
View file @
eba3f3e9
FROM
ubuntu:20.04
LABEL
name=fsl-imx-wayland_4.14-sumo_qt
LABEL
maintainer="oleksii.kutuzov@seco.com"
ENV
HOME /root
SHELL
["/bin/bash", "-c"]
ENV
FILE_NAME "fsl-imx-wayland-glibc-x86_64-fsl-image-qt5-validation-imx-aarch64-toolchain-4.14-sumo.sh"
ENV
ZIP_NAME "${FILE_NAME}.zip"
ENV
FILE_URL "https://documentation.seco.com/service/lib/exe/fetch.php/service/linux/sdk/${ZIP_NAME}"
# Install dependencies
RUN
apt-get update
&&
\
apt-get
install
-y
\
zip
\
unzip
\
wget
\
build-essential
\
python3
\
git
# Unpack the SDK to /opt/fsl-imx-wayland/4.14-sumo
RUN
wget
--no-check-certificate
${
FILE_URL
}
&&
\
unzip
${
ZIP_NAME
}
&&
\
chmod
+x
${
FILE_NAME
}
&&
\
./
${
FILE_NAME
}
-y
&&
\
rm
-f
${
FILE_NAME
}
&&
\
rm
-f
${
ZIP_NAME
}
# Update PATH
ENV
PATH=${PATH}:/opt/fsl-imx-wayland/4.14-sumo/sysroots/x86_64-pokysdk-linux/usr/bin/qt5
ENV
PATH=${PATH}:/opt/fsl-imx-wayland/4.14-sumo/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux
# Set environment
RUN
echo
'. /opt/fsl-imx-wayland/4.14-sumo/environment-setup-aarch64-poky-linux'
>>
~/.bashrc
\ No newline at end of file
fsl-imx-wayland_4.14-sumo_qt/build.sh
0 → 100755
View file @
eba3f3e9
#!/bin/bash
docker build
-t
fsl-imx-wayland_4.14-sumo_qt .
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment