Skip to content

Commit

Permalink
Update 04.02.13-FW24
Browse files Browse the repository at this point in the history
  • Loading branch information
dicksimon committed Apr 17, 2023
1 parent fb00733 commit 49ab655
Show file tree
Hide file tree
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.
6 changes: 3 additions & 3 deletions .gitattributes
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
6 changes: 2 additions & 4 deletions .gitignore
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
27 changes: 26 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
Firmware Release 04.02.13 (24) - CODESYS 3

Migration Guide - from e!COCKPIT to CODEYS V3.5:
- https://techdocs.wago.com/Software/eCOCKPIT_Migration/en-US/index.html#index_content

System:
[NEW] EC: Touchscreen support for display types:
Waveshare, Ilitek, PixCir, Elotouch, QDtech
[FIXED] CVE-2022-0529 , CVE-2022-0530
[FIXED] Updates libcurl to version 7.84.0;
Fixes CVE-2022-22576 , CVE-2022-27782, CVE-2022-30115, CVE-2022-27775,
CVE-2022-27781, CVE2022-27776, CVE-2022-27779, CVE-2022-27780, CVE-2022-27774,
CVE-2022-32205, CVE-2022-32206, CVE-2022-32207, CVE-2022-32208

Runtime System:
[NEW] Codesys3 Runtime-System 3.5.18.20
[CHANGED] Codesys3 Runtime-System supported on TP600 Control Panel
(762-x30x/8000-0002) and Edge Controller (752-8303/8000-0002).
[FIXED] “PLC load watchdog” might not work as expected: the plc load watchdog will
detect (e.g. an endless loop) but the IEC task might not be stopped in any case.
This might lead to a complete stop of the runtime process. As workaround and
improve “hardening” of your IEC application we recommend to use an IEC Task
watchdog on all your relevant IEC tasks in your IEC application.

################################################################################
Firmware Release 03.07.20 (99)

System:
Expand All @@ -17,7 +42,7 @@ System:
[FIXED] Security-Fix in config-tool print_log.
[FIXED] Network bridges discard their IP address when all associated network
ports are disconnected.
[FIXED] Dirty Pipe" enables root privileges CVE-2022-0847
[FIXED] "Dirty Pipe" enables root privileges CVE-2022-0847
[NEW] Integration of Docker Deamon. Docker now can be installed and ac-tivited
via. WBM.
[NEW] Users of WBM and Linux where harmonized. User "user" and "admin" can
Expand Down
25 changes: 25 additions & 0 deletions Dockerfile
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
Loading

0 comments on commit 49ab655

Please sign in to comment.