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
889867f3
Commit
889867f3
authored
May 30, 2023
by
Oleksii Kutuzov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update scripts
parent
b2c09986
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
116 additions
and
9 deletions
+116
-9
fsl-imx-fb_4.14-sumo/Dockerfile
fsl-imx-fb_4.14-sumo/Dockerfile
+3
-3
fsl-imx-fb_4.14-sumo/build.sh
fsl-imx-fb_4.14-sumo/build.sh
+1
-1
fsl-imx-fb_4.14-sumo/push.sh
fsl-imx-fb_4.14-sumo/push.sh
+1
-1
fsl-imx-fb_4.14-sumo/rebuild.sh
fsl-imx-fb_4.14-sumo/rebuild.sh
+1
-1
fsl-imx-wayland_5.10-hardknott/Dockerfile
fsl-imx-wayland_5.10-hardknott/Dockerfile
+1
-1
fsl-imx-wayland_5.10-hardknott/build.sh
fsl-imx-wayland_5.10-hardknott/build.sh
+1
-1
fsl-imx-wayland_5.10-hardknott/push.sh
fsl-imx-wayland_5.10-hardknott/push.sh
+1
-1
fsl-imx-xwayland_5.10-hardknott_qt/Dockerfile
fsl-imx-xwayland_5.10-hardknott_qt/Dockerfile
+45
-0
fsl-imx-xwayland_5.10-hardknott_qt/build.sh
fsl-imx-xwayland_5.10-hardknott_qt/build.sh
+3
-0
fsl-imx-xwayland_5.10-hardknott_qt/push.sh
fsl-imx-xwayland_5.10-hardknott_qt/push.sh
+3
-0
seconorth-wayland_kirkstone/Dockerfile
seconorth-wayland_kirkstone/Dockerfile
+50
-0
seconorth-wayland_kirkstone/build.sh
seconorth-wayland_kirkstone/build.sh
+3
-0
seconorth-wayland_kirkstone/push.sh
seconorth-wayland_kirkstone/push.sh
+3
-0
No files found.
fsl-imx-fb_4.14-sumo/Dockerfile
View file @
889867f3
...
@@ -38,13 +38,13 @@ RUN wget --no-check-certificate ${FILE_URL} && \
...
@@ -38,13 +38,13 @@ RUN wget --no-check-certificate ${FILE_URL} && \
RUN
git config
--global
--add
safe.directory /mnt/dev/imx-mkimage
&&
\
RUN
git config
--global
--add
safe.directory /mnt/dev/imx-mkimage
&&
\
git config
--global
--add
safe.directory /mnt/dev/uboot-imx
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
# Add user
# Add user
RUN
useradd
-ms
/bin/bash dev
RUN
useradd
-ms
/bin/bash dev
USER
dev
USER
dev
WORKDIR
/home/dev
WORKDIR
/home/dev
# Set environment
RUN
echo
'. /opt/fsl-imx-fb/4.14-sumo/environment-setup-aarch64-poky-linux'
>>
~/.bashrc
# Clone imx-mkimage as user inside the container
# Clone imx-mkimage as user inside the container
RUN
git clone https://git.seco.com/seco-ne/3rd-party/kuk/imx-mkimage-kuk.git
-b
kuk_imx_4.14.98_2.0.0_ga /home/dev/imx-mkimage_4.14
RUN
git clone https://git.seco.com/seco-ne/3rd-party/kuk/imx-mkimage-kuk.git
-b
kuk_imx_4.14.98_2.0.0_ga /home/dev/imx-mkimage_4.14
\ No newline at end of file
fsl-imx-fb_4.14-sumo/build.sh
View file @
889867f3
#!/bin/bash
#!/bin/bash
docker build
-t
gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest .
docker build
-t
git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
.
\ No newline at end of file
fsl-imx-fb_4.14-sumo/push.sh
View file @
889867f3
#!/bin/bash
#!/bin/bash
docker push gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
docker push git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
\ No newline at end of file
fsl-imx-fb_4.14-sumo/rebuild.sh
View file @
889867f3
#!/bin/bash
#!/bin/bash
docker build
--no-cache
-t
gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest .
docker build
--no-cache
-t
git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
.
\ No newline at end of file
fsl-imx-wayland_5.10-hardknott/Dockerfile
View file @
889867f3
FROM
ubuntu:20.04
FROM
debian:10
LABEL
name=fsl-imx-wayland_5.10-hardknott
LABEL
name=fsl-imx-wayland_5.10-hardknott
LABEL
maintainer="oleksii.kutuzov@seco.com"
LABEL
maintainer="oleksii.kutuzov@seco.com"
...
...
fsl-imx-wayland_5.10-hardknott/build.sh
View file @
889867f3
#!/bin/bash
#!/bin/bash
docker build
-t
git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest .
docker build
-t
gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
.
\ No newline at end of file
fsl-imx-wayland_5.10-hardknott/push.sh
View file @
889867f3
#!/bin/bash
#!/bin/bash
docker push git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
docker push gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
\ No newline at end of file
fsl-imx-xwayland_5.10-hardknott_qt/Dockerfile
0 → 100644
View file @
889867f3
FROM
debian:10
LABEL
name=fsl-imx-wayland_5.10-hardknott-qt
LABEL
maintainer="oleksii.kutuzov@seco.com"
SHELL
["/bin/bash", "-c"]
ENV
FILE_NAME "fsl-imx-xwayland-glibc-x86_64-imx-image-full-cortexa53-crypto-imx8mp-lpddr4-evk-toolchain-5.10-hardknott.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
\
bc
\
kmod
\
libssl-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_NAME
}
&&
\
./
${
FILE_NAME
}
-y
&&
\
rm
-f
${
FILE_NAME
}
&&
\
rm
-f
${
ZIP_NAME
}
# Add user
RUN
useradd
-ms
/bin/bash dev
USER
dev
WORKDIR
/home/dev
# Set environment
RUN
echo
'. /opt/fsl-imx-xwayland/5.10-hardknott/environment-setup-cortexa53-crypto-poky-linux'
>>
~/.bashrc
# Clone imx-mkimage as user inside the container
RUN
git clone https://git.seco.com/seco-ne/3rd-party/kuk/imx-mkimage-kuk.git
-b
kuk_lf-5.10.52_2.1.0 /home/dev/imx-mkimage
fsl-imx-xwayland_5.10-hardknott_qt/build.sh
0 → 100755
View file @
889867f3
#!/bin/bash
docker build
-t
gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
.
fsl-imx-xwayland_5.10-hardknott_qt/push.sh
0 → 100755
View file @
889867f3
#!/bin/bash
docker push gitlab.keith-koep.com:5050/kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
seconorth-wayland_kirkstone/Dockerfile
0 → 100644
View file @
889867f3
FROM
ubuntu:20.04
LABEL
name=seconorth-wayland_kirkstone
LABEL
maintainer="oleksii.kutuzov@seco.com"
SHELL
["/bin/bash", "-c"]
ENV
FILE_NAME "seconorth-wayland-glibc-x86_64-seconorth-image-cortexa53-crypto-seco-mx8mm-toolchain-kirkstone-8.0.sh"
ENV
FILE_URL "https://support.garz-fricke.com/projects/Linux-Yocto/Releases/Yocto-kirkstone-8.0/seco-mx8mm/sdk/${FILE_NAME}"
# Install dependencies
RUN
apt-get update
&&
\
apt-get
install
-y
\
zip
\
unzip
\
wget
\
build-essential
\
python3
\
git
\
flex
\
bison
\
libz-dev
\
bc
\
kmod
# Unpack the SDK to /opt/fsl-imx-wayland/4.14-sumo
RUN
wget
--no-check-certificate
${
FILE_URL
}
&&
\
chmod
+x
${
FILE_NAME
}
&&
\
./
${
FILE_NAME
}
-y
&&
\
rm
-f
${
FILE_NAME
}
RUN
apt-get update
&&
\
apt-get
install
-y
\
libyaml-dev
# Update PATH
ENV
PATH=${PATH}:/opt/seconorth-wayland/kirkstone-8.0/sysroots/x86_64-seconorthsdk-linux/usr/bin/aarch64-seconorth-linux
# Set environment
RUN
echo
'. /opt/seconorth-wayland/kirkstone-8.0/environment-setup-cortexa53-crypto-seconorth-linux'
>>
~/.bashrc
# Add user
RUN
useradd
-ms
/bin/bash dev
USER
dev
WORKDIR
/home/dev
# Clone imx-mkimage as user inside the container
RUN
git clone https://git.seco.com/seco-ne/3rd-party/kuk/imx-mkimage-kuk.git
-b
kuk_lf-5.10.52_2.1.0 /home/dev/imx-mkimage
\ No newline at end of file
seconorth-wayland_kirkstone/build.sh
0 → 100755
View file @
889867f3
#!/bin/bash
docker build
-t
git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest .
\ No newline at end of file
seconorth-wayland_kirkstone/push.sh
0 → 100755
View file @
889867f3
#!/bin/bash
docker push git.seco.com:5050/oleksii.kutuzov/dev-containers/
$(
basename
$(
pwd
))
:latest
\ 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