Skip to content
Snippets Groups Projects
  1. May 15, 2017
  2. May 14, 2017
  3. May 13, 2017
  4. May 12, 2017
  5. May 11, 2017
  6. May 10, 2017
    • Valentin Spreckels's avatar
      fritz_tffs_read: fix parsing of size argument · 6f01abf5
      Valentin Spreckels authored
      
      The parameter specification missed that -s takes an argument.
      
      Signed-off-by: default avatarValentin Spreckels <Valentin.Spreckels@Informatik.Uni-Oldenburg.DE>
      6f01abf5
    • Alexey Brodkin's avatar
      perf: Disable perf for ARC770 only, enable for ARC HS38 · 5dc76a42
      Alexey Brodkin authored
      
      Toolchain built for ARCv1 (read for ARC700 cores) by default has
      disabled atomic ops (-mno-atomic). When we build Linux kernel for ARC770
      which has LL/SC instructions and thus may handle normally atomic ops we
      explicitly add "-matomic" in CFLAGS. But since user-space perf utility has
      no way to extract CPU config options from Kconfig/defconfig it uses
      compiler default settings.
      
      In case of ARCv2 (read ARC HS38) atomics are enabled by default and so
      perf builds perfectly fine thus reenabling perf for ARC HS38 (actually
      for non-ARC700 targets).
      
      Signed-off-by: default avatarAlexey Brodkin <Alexey.Brodkin@synopsys.com>
      5dc76a42
    • Sergey Ryazanov's avatar
      build: new fixes for symlinked .config handling · e06d8f0f
      Sergey Ryazanov authored
      
      When running "make {config|defconfig|oldconfig}" with symlinked .config
      (e.g. to env/.config) it renames symlink to .config.old, creates new
      .config file, and writes the updated configuration into it.
      
      This breaks the desired workflow when changes in the configuration can
      be checked using "scripts/env diff" and commited using "scripts/env
      save". Since the env/.config file is not updated.
      
      The things become even worse when working with feeds, since feeds script
      quite often silently invokes "make {oldconfig|defconfig}" and breaks the
      symlink.
      
      Fix this issue by exporting KCONFIG_OVERWRITECONFIG=1, which forces
      mconf to overwrite the .config content, instead of renaming it and
      creating a new file. This variable is set only if .config is a symlink,
      otherwise the variable is not exported and the old behaviour is
      preserved.
      
      This change uses the same behaviour as "make menucofig", which has
      already been fixed in commit 5bf98b1a.
      
      Also make a tiny cosmetic update to the "make menuconfig" target code
      layout to make it look like other config handling targets.
      
      Signed-off-by: default avatarSergey Ryazanov <ryazanov.s.a@gmail.com>
      e06d8f0f
    • Arjen de Korte's avatar
      dnsmasq: don't propagate DUID from one host to another · 44da45a8
      Arjen de Korte authored
      
      If no DUID is set for a host, it should be empty, not the last one set for a previous host.
      
      Signed-off-by: default avatarArjen de Korte <build+lede@de-korte.org>
      44da45a8
    • Jo-Philipp Wich's avatar
      ramips: fixup-mac-address: add missing include · 8451b060
      Jo-Philipp Wich authored
      
      Add missing include of ramips.sh in order to import the missing
      ramips_board_name() procedure.
      
      Fixes FS#774.
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      8451b060
    • Ørjan Malde's avatar
      ramips: add support for Asus RT-AC51U · 5f932988
      Ørjan Malde authored
      
      Specification:
       - SoC: MediaTek MT7620A (580 MHz)
       - RAM: 64 MiB (Winbond W9751G6JB-25)
       - Flash: 16 MiB (Spansion S25FL128SAIF00)
       - LAN: x4 100M
       - WAN: x1 100M
       - Others: USB 2.0, reset button, wps button and 9 LEDs
      
      Issues:
       - 5 GHz band is not functional (missing driver support)
      
      Installation:
      
      Asus windows recovery tool:
       - install the Asus firmware restoration utility
       - unplug the router, hold the reset button while powering it on
       - release when the power LED flashes slowly
       - specify a static IP on your computer:
           IP address: 192.168.1.75;
           Subnet mask 255.255.255.0
       - Start the Asus firmware restoration utility, specify the sysupgrade
         image, and press upload
      
      TFTP Recovery method:
       - set computer to a static ip, 192.168.1.75
       - connect computer to the LAN 1 port of the router
       - hold the reset button while powering on the router for a few seconds
       - send firmware image using a tftp client; i.e from linux:
       $ tftp
       tftp> binary
       tftp> connect 192.168.1.1
       tftp> put lede-ramips-mt7620-rt-ac51u-squashfs-sysupgrade.bin
       tftp> quit
      
      Signed-off-by: default avatarØrjan Malde <foxyred333@gmail.com>
      5f932988
    • Alexey Belyaev's avatar
      ramips: add new device ZyXEL Keenetic as kn · a7cbf59e
      Alexey Belyaev authored
      
      This device exactly same as NBG-419N but with USB port and USB Led.
      
      Specification:
      
      - SoC: Ralink RT3052 (MIPS24Kc) @384MHz
      - RAM: 32 MiB
      - Flash: 8 MiB
      - WLAN: WiSoC 2T2R/300Mbps (2.4GHz)
      - LAN: 4x100M
      - WAN: 1x100M
      - USB: 1x2.0
      
      Installation via serial console (57600 8N1) from TFTP server
       - rename the firmware to something shorter, for example
         "sysupgrade.bin" (max. 32 chars)
       - copy firmware TFTP server's directory
       - when you power on device, and see U-Boot log, immediatly push "2"
         once.
       - You will see this message:
           2: System Load Linux Kernel then write to Flash via TFTP.
              Warning!! Erase Linux in Flash then burn new one. Are you sure?
       - Push "y", and enter: device IP, then TFTP server's IP, and then
         image firmware file name.
      
      The firmware will be downloaded within ~30 seconds and flashed to the
      device (It will take about 2 minutes).
      
      Signed-off-by: default avatarAlexey Belyaev <spider@spider.vc>
      [squash commits, compact commit message, fix compatible string, remove
      superfluous pinmuxes]
      Signed-off-by: default avatarMathias Kresin <dev@kresin.me>
      a7cbf59e
  7. May 09, 2017
  8. May 06, 2017
  9. May 05, 2017
Loading