Skip to content
Snippets Groups Projects
Select Git revision
  • 170c494f409df37459d9aa9d5af8bc675b7f9d4a
  • v2018.2.x default
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
42 results

v2018.1.2.rst

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    0030-download.mk-fix-packed-checkout-mirroring-support.patch 977 B
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Sun, 24 Apr 2016 08:49:27 +0200
    Subject: download.mk: fix packed checkout mirroring support
    
    Changeset r48416  broke the downloading of mirrored, packed scm checkouts.
    
    Fix this by removing the "@" sign in front of the download command which is
    now executed as part of a larger shell command under flock.
    
    Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
    
    Backport of r48733
    
    diff --git a/include/download.mk b/include/download.mk
    index 9176b11..130bbc5 100644
    --- a/include/download.mk
    +++ b/include/download.mk
    @@ -48,7 +48,7 @@ define DownloadMethod/default
     endef
     
     define wrap_mirror
    -	$(if $(if $(MIRROR),$(filter-out x,$(MIRROR_MD5SUM))),@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_MD5SUM)" "" || ( $(1) ),$(1))
    +$(if $(if $(MIRROR),$(filter-out x,$(MIRROR_MD5SUM))),$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_MD5SUM)" "" || ( $(1) ),$(1))
     endef
     
     define DownloadMethod/cvs