Skip to content
Snippets Groups Projects
  1. Nov 27, 2018
  2. Nov 24, 2018
    • Sven Eckelmann's avatar
      kernel: collect module symvers for external modules (#1580) · 8647b782
      Sven Eckelmann authored
      Collect module symvers for all external modules to make them available
      for modpost. This fixes dependencies for most external modules.
      
        root@ffv-525400123456:/# modinfo batman-adv
        module:         /lib/modules/4.4.153/batman-adv.ko
        alias:          net-pf-16-proto-16-family-batadv
        alias:          rtnl-link-batadv
        version:        openwrt-2018.1-5
        description:    B.A.T.M.A.N. advanced
        author:         Marek Lindner <mareklindner@neomailbox.ch>, Simon Wunderlich <sw@simonwunderlich.de>
        license:        GPL
        depends:
      
      After:
      
        root@ffv-525400123456:/# modinfo batman-adv
        module:         /lib/modules/4.4.153/batman-adv.ko
        alias:          net-pf-16-proto-16-family-batadv
        alias:          rtnl-link-batadv
        version:        openwrt-2018.1-5
        description:    B.A.T.M.A.N. advanced
        author:         Marek Lindner <mareklindner@neomailbox.ch>, Simon Wunderlich <sw@simonwunderlich.de>
        license:        GPL
        depends:        libcrc32c,cfg80211
      8647b782
  3. Oct 01, 2018
    • David Bauer's avatar
      ar71xx: flag FritzBox 4020 buttons as active low (#1544) · faddb3d1
      David Bauer authored
      Buttons of AVM FritzBox 4020 are incorrectly flagged as active high.
      
      This was an oversight as RFKill button was working as expected even
      with incorrectly flagged GPIO.
      
      Config mode is still accessable but will start on any button press, not
      only for the ones >= 10 seconds.
      
      This commit corrects this behavior to the expected one (10 second long
      press necessary to enter config mode).
      faddb3d1
  4. Aug 09, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · 6a3d5554
      Matthias Schiffer authored
      0a2c984222d0 kernel: ext4: fix check to prevent initializing reserved inodes
      91d209362b97 kernel: bump kernel 4.4 to version 4.4.147
      b5d9776cd24b firmware: amd64-microcode: update to 20180524
      55ab8649e72b firmware: intel-microcode: bump to 20180703
      
      Fixes #1504
      6a3d5554
  5. Jul 12, 2018
    • Christoph Krapp's avatar
      modules: update LEDE · c28b797c
      Christoph Krapp authored
      
      aaecfecdcd kernel: bump kernel 4.4 to version 4.4.139
      b08003223a base-files: fix links in banner.failsafe
      71019a7605 ar71xx: fix 5 GHz Wi-Fi on NBG6716
      ba5c0a1dea Revert "base-files: fix UCI config parsing and callback handling"
      5c6a8a9cdb kernel: bump kernel 4.4 to version 4.4.138
      cf4a37a581 uci: add missing 'option' support to uci_rename()
      7fc94b2a25 mac80211: rt2x00: no longer use TXOP_BACKOFF for probe frames
      b03826d8aa kernel: bump kernel 4.4 to version 4.4.137
      21f44e3389 map: add ealen as configurable uci parameter
      
      Signed-off-by: default avatarChristoph Krapp <achterin@googlemail.com>
      c28b797c
  6. Jun 30, 2018
  7. Jun 25, 2018
  8. Jun 07, 2018
  9. Jun 06, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · 998cc6e1
      Matthias Schiffer authored
      b6a1f43075f9 base-files: fix UCI config parsing and callback handling
      6734f32d91cd mtd: add build hack to reintroduce shared mtd for older releases
      aaac9e82aa60 mtd: mark as nonshared to fix FS#484
      0fee4906d5c0 ustream-ssl: update to latest git HEAD
      f34a0756fd94 ustream-ssl: update to latest git HEAD
      98b9d8a3d3fd mbedtls: Activate the session cache
      88ba88e5adc4 mbedtls: update mbedtls to version 2.7.3
      998cc6e1
    • Matthias Schiffer's avatar
      ar71xx: fix boot with increased kernel size on CPE/WBS 210/510 · 0563473a
      Matthias Schiffer authored
      Fixes: d139a135 ("Add various patches to deal with bigger kernels")
      Fixes #1417
      0563473a
    • Sven Eckelmann's avatar
      mac80211: initialize sinfo in cfg80211_get_station · c840a588
      Sven Eckelmann authored
      Most of the implementations behind cfg80211_get_station will not initialize
      sinfo to zero before manipulating it. For example, the member "filled",
      which indicates the filled in parts of this struct, is often only modified
      by enabling certain bits in the bitfield while keeping the remaining bits
      in their original state. A caller without a preinitialized sinfo.filled can
      then no longer decide which parts of sinfo were filled in by
      cfg80211_get_station (or actually the underlying implementations).
      
      cfg80211_get_station must therefore take care that sinfo is initialized to
      zero. Otherwise, the caller may tries to read information which was not
      filled in and which must therefore also be considered uninitialized. In
      batadv_v_elp_get_throughput's case, an invalid "random" expected throughput
      may be stored for this neighbor and thus the B.A.T.M.A.N V algorithm may
      switch to non-optimal neighbors for certain destinations.
      c840a588
  10. Jun 04, 2018
  11. Jun 03, 2018
    • Sven Eckelmann's avatar
      batman-adv: Fix best gw refcnt after netlink dump (#1411) · e1a741be
      Sven Eckelmann authored
      
      A reference to the best gateway is taken when the list of gateways in the
      mesh is sent via netlink. This is necessary to check whether the currently
      dumped entry is the currently selected gateway or not. This information is
      then transferred as flag BATADV_ATTR_FLAG_BEST.
      
      After the comparison of the current entry is done,
      batadv_*_gw_dump_entry() has to decrease the reference counter again.
      Otherwise the reference will be held and thus prevents a proper shutdown of
      the batman-adv interfaces (and some of the interfaces enslaved in it).
      
      Fixes: 899235a4a637 ("Merge pull request #241 from ecsv/batman-adv-2016.4-maint-2016-10-29")
      Reported-by: default avatarAndreas Ziegler <dev@andreas-ziegler.de>
      Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
      e1a741be
  12. May 26, 2018
  13. May 21, 2018
  14. May 18, 2018
  15. May 17, 2018
  16. May 16, 2018
  17. May 08, 2018
    • David Bauer's avatar
      ar71xx: add support for Fritz!Box 4020 · 22d45448
      David Bauer authored
      
      This commit adds support for the AVM Fritz!Box 4020 WiFi-router.
      
      SoC:   Qualcomm Atheros QCA9561 (Dragonfly) 750MHz
      RAM:   Winbond W971GG6KB-25
      FLASH: Macronix MX25L12835F
      WiFi:  QCA9561 b/g/n 3x3 450Mbit/s
      USB:   1x USB 2.0
      IN:    WPS button, WiFi button
      OUT:   Power LED green, Internet LED green, WLAN LED green,
             LAN LED green, INFO LED green, INFO LED red
      UART:  Header Next to Black metal shield
             Pinout is 3.3V - RX - TX - GND (Square Pad is 3.3V)
             The Serial setting is 115200-8-N-1.
      
      Tested and working:
       - Ethernet (LAN + WAN)
       - WiFi (correct MAC)
       - Installation via EVA bootloader
       - OpenWRT sysupgrade
       - Buttons
       - LEDs
      
      Not working:
       - USB port
      
      Installation via EVA:
      In the first seconds after Power is connected, the bootloader will
      listen for FTP connections on 169.254.157.1 (Might also be 192.168.178.1). Firmware can be uploaded
      like following:
      
        ftp> quote USER adam2
        ftp> quote PASS adam2
        ftp> binary
        ftp> debug
        ftp> passive
        ftp> quote MEDIA FLSH
        ftp> put openwrt-sysupgrade.bin mtd1
      
      Note that this procedure might take up to two minutes. After transfer is
      complete you need to powercycle the device to boot OpenWRT.
      
      Signed-off-by: default avatarDavid Bauer <mail@david-bauer.net>
      22d45448
  18. May 04, 2018
    • Matthias Schiffer's avatar
      modules: update routing packages · 39c17c6a
      Matthias Schiffer authored
      0bf3b72c33d9 nat46: fixup PKG_MIRROR_HASH
      23aa2e7b4afa nodogsplash2: Add NDS Restart Hook for Firewall (#369)
      7ae81c8311ec cjdns: 20.1 -> 20.2
      ff7b5da265e1 prince: version bump to v0.4
      2f90fe406c58 miniupnpd: De-maintainering myself.
      fdaa4cde3b2c bmx7: bump version
      455a54207c84 batman-adv: upgrade package to latest release 2018.1
      2e4937ea68f8 batctl: upgrade package to latest release 2018.1
      a0eca40b0003 alfred: upgrade package to latest release 2018.1
      015e5e99f2b6 bmx7: use configReaload on service reload
      0ced8ec5a763 bmx7: keep bmx7 secret keys on sysupgrade
      4bff0b3c65c5 cjdns: build fixes
      7fc2fbdfc1b7 babeld: release 1.8.1
      135bc605b4cf alfred: Support interface IDs with more than two digits
      91e600e1cd9a bmx7: convert init script to use procd
      86be0095b475 nodogsplash2: Add compatibility with mwan3 v2
      17fccad969ea smcroute: Change download to HTTP
      63cae8f571a6 bmx7: bump version
      39c17c6a
    • Matthias Schiffer's avatar
      modules: update LEDE · 0b090252
      Matthias Schiffer authored
      999bb66b20b0 kernel: add missing in6_dev_put_clear call to an ipv6 network patch
      81573ea25924 kernel: bump kernel 4.4 to 4.4.129 for 17.01
      afa887388766 gcc: gcc 6.3.0 fix comparison between pointer and integer
      0b090252
  19. Apr 26, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · a55b83f4
      Matthias Schiffer authored
      eed9d40133fe ar71xx: Ubiquiti Airmax M: add relocate-kernel to invalidate cache
      23a638ebd1fd brcm47xx: backport upstream patches for Netgear WNR1000 V3
      a55b83f4
  20. Apr 17, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · 7bb6a775
      Matthias Schiffer authored
      efb6ca189641 base-files: /lib/functions.sh: ignore errors in insert_modules
      b5ba01a0d3f6 fstools: update to latest lede-17.01 branch
      a9b607740273 kernel: bump kernel 4.4 to 4.4.126 for 17.01
      09d95e44fc3d mbedtls: change libmbedcrypto.so soversion back to 0
      4673a0bffc89 kernel: mtd: bcm47xxpart: improve handling TRX partition size
      
      Also switch to the upstreamed version of "kernel: disable accept_ra by
      default".
      7bb6a775
  21. Apr 13, 2018
  22. Apr 10, 2018
  23. Mar 16, 2018
  24. Mar 07, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · d0fbb81a
      Matthias Schiffer authored
      9b0a4bafbce7 base-files: tune fragment queue thresholds for available system memory
      b47094ce96ff include/package-defaults.mk: fix default Build/Prepare with empty ./src
      75be005e8bdc include/rootfs.mk: retain list of conffiles with CONFIG_CLEAN_IPKG
      696c6325a3a7 include/rootfs.mk: do not remove opkg prerm scripts during rootfs preparation
      17c0362178ca base-files: sysupgrade: do not rely on opkg to list changed conffiles
      2ae9ebf37402 kernel: bump 4.4 to 4.4.120 for 17.01
      571d3def6baf x86: add preinit hook to reload microcode
      681aaaf719ec firmware: add microcode package for Intel
      c6314ee06f94 firmware: add microcode package for AMD
      222521d5937a tools: add iucode-tool
      f7a6b6724a63 x86: enable microcode loading for Intel and AMD
      dfe620cb93c0 odhcpd: fix interop with wide DHCPv6 client (FS#1377)
      18c999a6ff33 base-files: fix off-by-one in counting seconds for factory reset
      92ea65b36aa7 sunxi: disable LPAE to allow kernel to run on A13
      7dcbe0e22dbb bcm53xx: fix fallback code for picking status LED
      4db583b9c2ab mountd: update to the latest version from 2018-02-26
      d0fbb81a
    • Linus Lüssing's avatar
      batman-adv: multicast TT fixes and cleanups · 7e404ac5
      Linus Lüssing authored
      
      The first one adds a fix that might potentially result in multicast packet
      loss once we would enable multicast_mode again.
      
      The second one avoids some small but unnecessary overhead. More
      importantly though, it is supposed to ease further multicast improvements
      later (e.g. no need for a multicast sending node to determine overlap
      between WANT_ALL_IPV4/6 flags and TT entries while on fast-path).
      
      Signed-off-by: default avatarLinus Lüssing <linus.luessing@c0d3.blue>
      7e404ac5
    • Matthias Schiffer's avatar
      modules: update routing packages · 4d9c3c1c
      Matthias Schiffer authored
      3aaa772ef520 bmx7: bump version
      ccd4210f0ba7 bmx7: add PKG_MIRROR_HASH
      d6dcd0c75630 bmx6: add PKG_MIRROR_HASH
      536782119f0a alfred: upgrade package to latest release 2018.0
      6a6f5da5efd5 batctl: upgrade package to latest release 2018.0
      3bb75b003563 batman-adv: upgrade package to latest release 2018.0
      2f74073c209d bmx7: bump version to 58b3823262512a48f5174e6778b2368c55bd05d9
      733e935f04fc cjdns: v20 -> v20.1
      f0ee73aa2285 bmx7: bump version
      21a6454d7226 bmx6: bump to latest upstream version
      4d9c3c1c
    • Matthias Schiffer's avatar
      7c9e1e10
  25. Mar 05, 2018
  26. Feb 20, 2018
    • Matthias Schiffer's avatar
      modules: update LEDE · b9436914
      Matthias Schiffer authored
      788312ca59c5 uqmi: ensure CID is a numeric value before proceeding
      b934aa2f2144 kernel: update 17.01 kernel to 4.4.116
      b3b16c8ce5c6 uqmi: use built-in command for data-link verification
      e9eb219e5a07 uqmi: use correct value for connection checking
      5661ac1de4d8 uqmi: use general method for state cleaning
      7c259fb98018 uqmi: silence error on pin verification
      046222dfaf12 uqmi: fix raw-ip mode for newer lte modems
      0393009ec84e net: uqmi: fix blocking in endless loops when unplugging device
      31ae7381b8db kernel: refresh patches
      3b227103e6a3 kernel: backport raw-ip mode for newer QMI LTE modems
      f60be720772c base-files: don't evaluate block-device uevent
      623cdc4ffeef ramips: backport mt7530/762x switch fixes
      b15d54e659b4 perf: use libunwind
      566ff9e6ee69 libunwind: enable build for arm
      b9436914
  27. Feb 15, 2018
  28. Feb 11, 2018
  29. Feb 04, 2018
  30. Feb 03, 2018
Loading