Skip to content
Snippets Groups Projects
  1. Apr 21, 2023
    • Paul Fertser's avatar
      treewide: remove AUTORELEASE · 0c10c224
      Paul Fertser authored
      
      Automatically compute and substitute current values for all
      $(AUTORELEASE) instances as this feature is deprecated and shouldn't be
      used.
      
      The following temporary change was made to the core:
      
      diff --git a/rules.mk b/rules.mk
      index 57d7995d4fa8..f16367de87a8 100644
      --- a/rules.mk
      +++ b/rules.mk
      @@ -429,7 +429,7 @@ endef
       abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))
      
       COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
      -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
      +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
      
       all:
       FORCE: ;
      
      And this command used to fix affected packages:
      
      for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                                    sed 's^.*/\([^/]*\)/Makefile^\1^';);
      do
        make package/$i/download
      done
      
      Signed-off-by: default avatarPaul Fertser <fercerpav@gmail.com>
      0c10c224
  2. Feb 23, 2023
    • Josef Schlehofer's avatar
      antfs: drop this kernel package · 42a4fbe4
      Josef Schlehofer authored
      
      Reasons to remove this package:
      
      1. It is not available for Linux kernel 5.15 and onwards.
      2. It seems that it is not maintained as the original repository was
         done in 2018 and then the forked repository was done to have this
      merged only to OpenWrt.
      3. Anyone can use ntfs-3g (fuse) or ntfs3 from Paragon, which has been
         available since Linux kernel 5.15
      4. Nobody said why this package was necessary or required to be added
         here or what was the difference between driver(s) in the Linux kernel and
      this package.
      5. No project home page, no documentation, only source code provided by
         AVM
      
      Signed-off-by: default avatarJosef Schlehofer <pepe.schlehofer@gmail.com>
      Unverified
      42a4fbe4
  3. Jan 30, 2023
  4. Nov 15, 2022
  5. Sep 19, 2022
    • Robert Marko's avatar
      mdio-tools: update to 1.2.0 · ddf1bccc
      Robert Marko authored
      
      Update the mdio-netlink kmod and userspace mdio-tools to version 1.2.0.
      This allows dropping the time64 musl patch which was upstreamed.
      
      [v1.2.0] - 2022-09-15
      ---------------------
      
      - mdio: A new addressing mode "mmd-c22": Used to access MMDs attached
        to MDIO controllers without Clause 45 support by using registers 13
        and 14 in the device's Clause 22 register space
      - mdio: Pretty print gigabit link capability information from a PHY's
        extended status register
      - mdio: Pretty print lots of status information from MMDs (C45 PHYs)
      - mvls: Decode priority override information of ATU entries
      
      - mvls: Table listings now always prints out the device information,
        even on single chip systems.
      
      Signed-off-by: default avatarRobert Marko <robimarko@gmail.com>
      ddf1bccc
  6. Aug 11, 2022
  7. Jun 09, 2022
    • Robert Marko's avatar
      mdio-tools: update to 1.1.1 · 4048eeb3
      Robert Marko authored
      
      Update the mdio-netlink kmod and userspace mdio-tools to version 1.1.1.
      
      mdio-tools required a musl time64 compatibility fix that I have an PR
      open for already.
      
      Changelog:
      [v1.1.1] - 2022-05-23
      ---------------------
      
      Tiny bugfix release.
      
      - mdio: The bench operation is now much more reliable when stacked on
        other devices than regular PHYs (e.g. paged PHYs or Marvell
        switches).
      - mvls: The STU can now be dumped chips from the Peridot generation.
      
      [v1.1.0] - 2022-05-04
      ---------------------
      
      A sprawling release, adding various mvls related introspection
      features. mvls also gains a JSON output format.
      
      - mvls: The STU can now be dumped (requires Linux 5.17 or later). This
        is useful now that mv88e6xxx supports offloading of MST states
      - mvls: Output can now be formatted as JSON for easier scripting
      - mdio: mvls: A subset of MIB counters can now be dumped. This let's
        you get at counters for DSA ports, which are not reachable from
        ethtool
      - mdio: mvls: The LAG mask and LAG map tables can now be dumped
      - mdio: Improve usage message by including the examples from the
        manual
      
      Signed-off-by: default avatarRobert Marko <robert.marko@sartura.hr>
      4048eeb3
  8. May 01, 2022
  9. Feb 20, 2022
  10. Feb 15, 2022
  11. Jan 19, 2022
  12. Nov 29, 2021
    • Sven Eckelmann's avatar
      ovpn-dco: Avoid building against musl headers · 8340b842
      Sven Eckelmann authored
      
      The musl headers contain defines which are incompatible with kernel builds.
      For example alltypes.h contain a __BIG_ENDIAN define. This will force
      various kernel functions/macros to be build in a way which requires the
      target system to be big endian. But if the target system is actually little
      endian, these function will then not perform there intended tasks. The
      actual (hard to debug) effects can vary between minor problems and fatal
      errors.
      
      This is port of the fix from OpenWrt's commit 9ac47ee46918 ("build: use
      -nostdinc and -isystem in NOSTDINC_FLAGS for out-of-tree kernel modules")
      
      Fixes: 17cd1793 ("ovpn-dco: Add package")
      Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
      8340b842
  13. Nov 12, 2021
  14. Nov 11, 2021
  15. Nov 03, 2021
  16. Oct 18, 2021
  17. Aug 21, 2021
  18. Aug 09, 2021
    • Rosen Penev's avatar
      Revert "ksmbd: update to 3.4.0" · ba696e2b
      Rosen Penev authored
      This reverts commit 6a0ae4b1.
      
      ksmbd 3.4.0 reworks its dependencies as a result of upstream feedback.
      Unfortunately, this means that it now relies on CONFIG_FS_POSIX_ACL,
      which is not easy to direcly enable in OpenWrt.
      
      Revert in order to fix multiple build failures that people experience.
      ba696e2b
  19. Jul 29, 2021
  20. Jul 21, 2021
  21. Jul 15, 2021
    • Damien Mascord's avatar
      mdio-tools: Add package plus kernel module · e3512741
      Damien Mascord authored
      
      mdio is a low-level Linux debug tool for communicating with devices attached an MDIO bus. It improves on existing tools in this space in a few important ways:
      
      MDIO buses are directly addressable. Previous solutions relied on at least one Ethernet PHY on the bus being attached to a net device, which is typically not the case when the device is an Ethernet switch for example.
      Complex operations can be performed atomically. The old API only supported a single read or write of a single register. mdio sends byte code to the mdio-netlink kernel module that can perform multiple operations, store intermediate values, loop etc. As a result, things like read/mask/write operations and accesses to paged PHYs can be performed safely.
      
      Signed-off-by: default avatarDamien Mascord <tusker@tusker.org>
      e3512741
  22. Apr 24, 2021
  23. Apr 07, 2021
    • Rosen Penev's avatar
      ksmbd: update to 3.3.8 · 9e956036
      Rosen Penev authored
      
      Major changes are:
        clean-up codes using checkpatch --strict option.
        fix several warning and build failure from linux-next.
        change the minimum supported kernel version to v5.4.
        use xarray for tree connect list.
        fix reviews from lkml.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      (cherry picked from commit fa6f182a)
      9e956036
    • Rosen Penev's avatar
      ksmbd: update to 3.3.8 · fa6f182a
      Rosen Penev authored
      
      Major changes are:
        clean-up codes using checkpatch --strict option.
        fix several warning and build failure from linux-next.
        change the minimum supported kernel version to v5.4.
        use xarray for tree connect list.
        fix reviews from lkml.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      fa6f182a
  24. Apr 06, 2021
  25. Mar 13, 2021
    • Rosen Penev's avatar
      ksmbd: update to 3.3.7 · 189d4aeb
      Rosen Penev authored
      
      Major change are:
      
      Fix an issue that directories appear as files when using windows
      backup.
      Fix xfstests generic/241 failure on life test.
      Update ksmbd shutdown and debug print on/off using ksmbd.control in
      cifsd.rst.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      (cherry picked from commit 851b9b25)
      189d4aeb
    • Rosen Penev's avatar
      ksmbd: update to 3.3.7 · 851b9b25
      Rosen Penev authored
      
      Major change are:
      
      Fix an issue that directories appear as files when using windows
      backup.
      Fix xfstests generic/241 failure on life test.
      Update ksmbd shutdown and debug print on/off using ksmbd.control in
      cifsd.rst.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      851b9b25
  26. Mar 12, 2021
    • Rosen Penev's avatar
      ksmbd: update to 3.3.6 · 2d2e6fe1
      Rosen Penev authored
      
      Major changes are:
      
      Fix kernel oops from fuse+ntfs driver.
      Fix the issue of change the directory to the file using Nautilus
      client.
      Fix ksmbd build break with the latest linux-5.12-rc1.
      Fix potential memleak and use after free.
      Fix use after free from KASAN(racy issue)
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      (cherry picked from commit 8e3a4ade)
      2d2e6fe1
    • Martin Blumenstingl's avatar
      ksmbd: update to 3.3.5 · b516dbdb
      Martin Blumenstingl authored
      
      Major changes for version 3.3.5 are:
      - Add support for version 4 dos attribute structure of samba.
      - Implement maximal allowed desired access.
      - Fix several error handling.
      - Fix a few smbtorture failures.
      
      Signed-off-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
      (cherry picked from commit 71aef26e)
      b516dbdb
    • Rosen Penev's avatar
      ksmbd: update to 3.3.6 · 8e3a4ade
      Rosen Penev authored
      
      Major changes are:
      
      Fix kernel oops from fuse+ntfs driver.
      Fix the issue of change the directory to the file using Nautilus
      client.
      Fix ksmbd build break with the latest linux-5.12-rc1.
      Fix potential memleak and use after free.
      Fix use after free from KASAN(racy issue)
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      8e3a4ade
  27. Mar 06, 2021
  28. Feb 24, 2021
  29. Feb 21, 2021
  30. Feb 20, 2021
Loading