Skip to content
Snippets Groups Projects
  1. Apr 08, 2017
    • Jo-Philipp Wich's avatar
      opkg: backport upstream fixes, code cleanups · 1449b52f
      Jo-Philipp Wich authored
      
      Update to latest Git in order to import the following fixes:
      
      1d0263b check_data_file_clashes_change: remove duplicated offline root in paths
      a00a6a9 buildReplaces: do not add duplicated replacees
      9fbedd8 opkg: compare-versions doesn't need any state
      45b54f6 opkg_cmd: fix segmentation fault in opkg_compare_versions_cmd()
      93de62b opkg_cmd: fix return of opkg compare-versions
      51275a8 pkg_src_list_push: remove unused function
      947d3d4 pkg_src_list_pop: remove unused function
      980cfb2 str_list_push: remove unused function
      52c31c1 str_list_prev: remove unused function
      7d24212 str_list_last: remove unused function
      48142a3 conffile_list_pop: remove unused function
      46c5de5 pkg_dest_list_push: remove unused functions
      368bb62 nv_pair_list_prev: remove unused function
      2985c00 nv_pair_list_last: remove unused function
      f5082ac conffile_list_pop: remove unused function
      89bf8b9 conffile_list_push: remove unused function
      23d31fb active_list_sort: remove unused function
      7fe45f2 active_list_add_depend: remove unused function
      86b584d pkg_dependence_satisfied: remove unused function
      816d330 Fix typo in pkg_hash_fetch_best_installation_candidate.
      07f3b02 set_flags_from_control: remove function
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      1449b52f
  2. Apr 07, 2017
  3. Apr 06, 2017
  4. Apr 05, 2017
  5. Apr 04, 2017
  6. Apr 03, 2017
  7. Apr 02, 2017
  8. Apr 01, 2017
  9. Mar 30, 2017
    • Daniel Golle's avatar
      mac80211: rt2x00: import upstream changes and rebase our patches · 399d5cf5
      Daniel Golle authored
      
      Some of our local patches have been accepted upstream. And there are
      some more relevant changes (mostly for rt2800usb). Import them and
      rebase our remaining local patches on top.
      
      Signed-off-by: default avatarDaniel Golle <daniel@makrotopia.org>
      399d5cf5
    • Christian Mehlis's avatar
      ar71xx: Compex WPJ563 support · dc4eae7a
      Christian Mehlis authored
      
      Specification:
      - SoC: Qualcomm Atheros QCA9563 (775 MHz, MIPS 74Kc)
      - RAM: 128 MiB
      - Storage: 16MB NOR flash
      - Wireless: Built into QCA9563 (Dragonfly), PHY modes b/g/n, 3x3 MIMO
      - Ethernet: 2x1G
      
      Tested and working:
      - ethernet / switch / lan / wan
      - 2.4GHz SoC wifi
      - PCIe
      - leds
      - buzzer
      
      Ramload:
      - tftpboot 0x84000000 lede-ar71xx-generic-wpj563-16M-initramfs-uImage.bin
      - bootm 0x84000000
      
      Install:
      - tftpboot 0x80500000 lede-ar71xx-generic-wpj563-16M-squashfs-sysupgrade.bin
      - erase 0x9f030000 +$filesize
      - erase 0x9f680000 +1
      - cp.b $fileaddr 0x9f030000 $filesize
      
      Erasing 0x9f680000 is required because uboot defines
      "bootcmd=bootm 0x9f680000 || bootm 0x9f030000", so it first tries to boot
      the higher address. I think the 16 mb flash are intended to be used as
      8+8mb for a fallback image. In my hardware only the lower address has a
      bootable image. But to make sure future hardware will boot lede too, I
      erase one block, so uboot will skip this address.
      
      Signed-off-by: default avatarChristian Mehlis <christian@m3hlis.de>
      dc4eae7a
    • Vittorio Gambaletta's avatar
      ar8327: Add workarounds for AR8337 switch. · 967b6be1
      Vittorio Gambaletta authored
      
      RGMII RX delay setting needs to be always specified for AR8337 to
      avoid port 5 RX hang on high traffic / flood conditions.
      
      Also, the HOL registers that set per-port and per-packet-priority
      buffer sizes are updated with the reduced values suggested by the
      QCA switch team.
      
      Finally, AR8327 reserved register fixups are disabled for the AR8337.
      
      This patch is adapted from the Code Aurora QSDK, but with magic
      values mapped to proper defines.
      
      Signed-off-by: default avatarVittorio Gambaletta <openwrt@vittgam.net>
      967b6be1
  10. Mar 29, 2017
  11. Mar 28, 2017
    • Yousong Zhou's avatar
      firewall: document rules for IPSec ESP/ISAKMP with 'name' option · 8fb39f16
      Yousong Zhou authored
      
      These are recommended practices by REC-22 and REC-24 of RFC6092:
      "Recommended Simple Security Capabilities in Customer Premises Equipment
      (CPE) for Providing Residential IPv6 Internet Service"
      
      Fixes FS#640
      
      Signed-off-by: default avatarYousong Zhou <yszhou4tech@gmail.com>
      8fb39f16
    • Thomas Reifferscheid's avatar
      ipq8064: fix dwc3-of-simple module unloading · 17f60b1c
      Thomas Reifferscheid authored
      Without patch unloading the dwc3-of-simple module went stuck after
      successfully removing hcd.1 during the hcd.0 removal:
      
      root@LEDE:/# rmmod dwc3-of-simple
      [   21.391846] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   21.391931] usb usb4: USB disconnect, device number 1
      [   21.397038] xhci-hcd xhci-hcd.1.auto: USB bus 4 deregistered
      [   21.401111] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   21.406685] usb usb3: USB disconnect, device number 1
      [   21.412848] xhci-hcd xhci-hcd.1.auto: USB bus 3 deregistered
      [   21.417248] xhci-hcd xhci-hcd.0.auto: remove, state 1
      [   21.422521] usb usb2: USB disconnect, device number 1
      followed by nothing.
      
      Sometimes a stall CPU was detected, or a kernel panic,
      or a reboot occurred after a couple of minutes.
      
      At the same time unloading the dwc3 module followed by dwc3-of-simple
      module was working repeatedly.
      
      root@LEDE:/# rmmod dwc3
      [   53.827328] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   53.827412] usb usb4: USB disconnect, device number 1
      [   53.832630] xhci-hcd xhci-hcd.1.auto: USB bus 4 deregistered
      [   53.836452] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   53.842314] usb usb3: USB disconnect, device number 1
      [   53.848412] xhci-hcd xhci-hcd.1.auto: USB bus 3 deregistered
      [   53.852542] xhci-hcd xhci-hcd.0.auto: remove, state 1
      [   53.857882] usb usb2: USB disconnect, device number 1
      [   53.863956] xhci-hcd xhci-hcd.0.auto: USB bus 2 deregistered
      [   53.867875] xhci-hcd xhci-hcd.0.auto: remove, state 1
      [   53.873696] usb usb1: USB disconnect, device number 1
      [   53.879742] xhci-hcd xhci-hcd.0.auto: USB bus 1 deregistered
      root@LEDE:/# rmmod dwc3-of-simple
      root@LEDE:/#
      
      For the non-working case, the code was stuck in a readl() in
      http://lxr.free-electrons.com/source/drivers/usb/host/xhci.c#L91
      because
      http://lxr.free-electrons.com/source/drivers/usb/dwc3/dwc3-of-simple.c#L126
      was disabling the wrong clocks when removing hcd.1 (it was disabling
      the clock of hcd.0). That's why the readl() went stuck when removing
      hcd.0
      
      The patch however addresses the clock assignment from the .dtsi
      file. Most probably it went into openwrt here:
      https://dev.openwrt.org/browser/trunk/target/linux/ipq806x/patches-3.18/101-ARM-qcom-add-USB-nodes-to-ipq806x-ap148.patch?rev=45261
      copied from Qualcomms attempt here: https://lkml.org/lkml/2015/11/20/116
      
      
      
      Now unloading and repeated module loading is working just fine,
      no matter if you'd remove dwc3-of-simple or dwc3.
      
      root@LEDE:/# rmmod dwc3-of-simple
      [   24.089679] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   24.089765] usb usb4: USB disconnect, device number 1
      [   24.094856] xhci-hcd xhci-hcd.1.auto: USB bus 4 deregistered
      [   24.098963] xhci-hcd xhci-hcd.1.auto: remove, state 1
      [   24.104522] usb usb3: USB disconnect, device number 1
      [   24.111194] xhci-hcd xhci-hcd.1.auto: USB bus 3 deregistered
      [   24.115086] xhci-hcd xhci-hcd.0.auto: remove, state 1
      [   24.120396] usb usb2: USB disconnect, device number 1
      [   24.126503] xhci-hcd xhci-hcd.0.auto: USB bus 2 deregistered
      [   24.130347] xhci-hcd xhci-hcd.0.auto: remove, state 1
      [   24.135948] usb usb1: USB disconnect, device number 1
      [   24.142085] xhci-hcd xhci-hcd.0.auto: USB bus 1 deregistered
      root@LEDE:/#
      
      Fixes: dwc3-of-simple module unloading
      
      Signed-off-by: default avatarThomas Reifferscheid <thomas@reifferscheid.org>
      17f60b1c
Loading