-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6,724 changed files
with
96,516 additions
and
201,342 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
src/boost_1_68_0.tar.bz2 filter=lfs diff=lfs merge=lfs -text | ||
src/docker-20_10_14-wago_static-linux_arm_v7.tar.gz filter=lfs diff=lfs merge=lfs -text | ||
src/linux-5.15.19.tar.xz filter=lfs diff=lfs merge=lfs -text | ||
ptxproj/src/linux-5.15.86-rt56-w04.01.07.tgz filter=lfs diff=lfs merge=lfs -text | ||
ptxproj/src/qt-everywhere-src-5.14.2.tar.xz filter=lfs diff=lfs merge=lfs -text | ||
ptxproj/src/go1.18.7.linux-amd64.tar.gz filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
**/out/gcc_5_5_arm-linux-gnueabihf/ | ||
**/bin/gcc_5_5_arm-linux-gnueabihf/ | ||
**/out/gcc_9_2_arm-linux-gnueabihf/ | ||
**/bin/gcc_9_2_arm-linux-gnueabihf/ | ||
**/out/gcc_*_*_arm-linux-gnueabihf/ | ||
**/bin/gcc_*_*_arm-linux-gnueabihf/ | ||
selected_platformconfig | ||
selected_ptxconfig | ||
selected_toolchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
ARG REGISTRY_PREFIX='wagoautomation/' | ||
ARG SDK_BUILDER_VERSION='1.0.0' | ||
|
||
FROM ${REGISTRY_PREFIX}sdk-builder:${SDK_BUILDER_VERSION} as tp-firmware-sdk | ||
|
||
|
||
ARG USERID | ||
RUN useradd -u "$USERID" -ms /bin/bash user | ||
RUN chown -R user:user /home/user | ||
COPY --chown=user:user build.sh /usr/local/bin/build | ||
COPY --chown=user:user certs/* /usr/local/share/ca-certificates/ | ||
RUN update-ca-certificates | ||
|
||
RUN apt update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \ | ||
libx11-dev \ | ||
python-libxml2 \ | ||
python3-mako \ | ||
gcc-multilib \ | ||
g++-multilib \ | ||
python3-mako \ | ||
libmpc-dev \ | ||
libgmp3-dev \ | ||
python3-setuptools \ | ||
libxml-parser-perl |
Oops, something went wrong.