Hi Waldemar,
Here's the result of me trying to update my DS414. Well, actually I also collected some pending fixes and new ports as well so it's not as bad as it seems. :)
The first eight patches are clear fixes. The next three as well, but not as critical as the first ones. Patch 12 merely fixes the existing workaround, I sadly haven't managed to implement a proper fix. Patches 13 and 14 are workarounds to build failures for me, yet are valid by themselves. The remaining ones add new functionality.
Happy new year!
Cheers, Phil
Phil Sutter (19): package: samba: Fix for large files on 32bit target package: ffmpeg: Do not mandatory depend on libressl package: ffmpeg: Fix for build failure with newer binutils package: ffmpeg: Drop outdated synth_filter_vfp.S extra source target: config: Newer kernels moved DTB files package: zlib: Fix for wrong zlib.pc content in host build package: libffi: Fix for wrong libffi.pc content in host build package: libxml2: Also fix for wrong libxml2.pc content in host build package: glib: glib-host to explicitly depend on zlib-host package: mdadm: Update to version 4.4 package: python3-jinja2: Fix for including non-existent file package: ca-certificates: Fix python3 path package: util-linux: Do not build lsfd if not needed package: openssl: Disable docs build package: base-files: Add bonding support to network scripts package: Port libexif package: Port minidlna package: Port apcupsd package: Port zfs package
package/apcupsd/Makefile | 44 ++++ package/apcupsd/files/apccontrol | 74 +++++++ package/apcupsd/files/apcupsd.conffiles | 1 + package/apcupsd/files/apcupsd.init | 38 ++++ package/apcupsd/files/apcupsd.postinst | 3 + package/base-files/files/interfaces-dhcp | 11 +- .../src/etc/network/if-post-down.d/04-bonding | 20 ++ .../src/etc/network/if-pre-up.d/05-bonding | 37 ++++ .../patches/patch-mozilla_Makefile | 2 +- package/ffmpeg/Makefile | 8 +- ...lpdsp_armv5te-fix-label-format-to-wo.patch | 59 +++++ .../src/libavcodec/arm/synth_filter_vfp.S | 206 ------------------ package/glib/Makefile | 2 +- package/libexif/Makefile | 27 +++ package/libffi/Makefile | 1 - package/libxml2/Makefile | 1 - package/mdadm/Makefile | 17 +- package/minidlna/Makefile | 29 +++ package/minidlna/files/minidlna.init | 36 +++ package/minidlna/files/minidlna.postinst | 3 + ...-Try-syslog-if-no-log-path-was-given.patch | 104 +++++++++ package/openssl/Makefile | 2 +- package/python3-jinja2/Makefile | 2 +- package/samba/Makefile | 5 +- package/samba/files/cache.txt | 2 - package/util-linux/Makefile | 5 + package/zfs/Makefile | 70 ++++++ ...t-for-cross-compiling-kernel-modules.patch | 53 +++++ package/zlib/Makefile | 3 +- target/config/Config.in.kernelfmt | 21 +- target/linux/config/Config.in.input | 1 + 31 files changed, 661 insertions(+), 226 deletions(-) create mode 100644 package/apcupsd/Makefile create mode 100644 package/apcupsd/files/apccontrol create mode 100644 package/apcupsd/files/apcupsd.conffiles create mode 100644 package/apcupsd/files/apcupsd.init create mode 100644 package/apcupsd/files/apcupsd.postinst create mode 100755 package/base-files/src/etc/network/if-post-down.d/04-bonding create mode 100755 package/base-files/src/etc/network/if-pre-up.d/05-bonding create mode 100644 package/ffmpeg/patches/0001-libavcodec-arm-mlpdsp_armv5te-fix-label-format-to-wo.patch delete mode 100644 package/ffmpeg/src/libavcodec/arm/synth_filter_vfp.S create mode 100644 package/libexif/Makefile create mode 100644 package/minidlna/Makefile create mode 100644 package/minidlna/files/minidlna.init create mode 100644 package/minidlna/files/minidlna.postinst create mode 100644 package/minidlna/patches/0001-log-Try-syslog-if-no-log-path-was-given.patch create mode 100644 package/zfs/Makefile create mode 100644 package/zfs/patches/0001-Support-for-cross-compiling-kernel-modules.patch