Skip to content
Snippets Groups Projects
Select Git revision
  • 9cff74b5a40cdf3f970eaa39787409e5f12a2f8e
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-06-25
  • experimental-2025-06-25-base
  • experimental-2025-06-24
  • experimental-2025-06-24-base
  • experimental-2025-06-22
  • experimental-2025-06-22-base
  • v2023.2.5-ffs0.1
  • experimental-2025-06-08
  • experimental-2025-06-08-base
  • experimental-2025-06-06
  • experimental-2025-06-06-base
  • experimental-2025-05-27
  • experimental-2025-05-27-base
  • experimental-2025-05-18
  • experimental-2025-05-18-base
  • experimental-2025-05-15
  • experimental-2025-05-15-base
  • experimental-2025-05-13
  • experimental-2025-05-13-base
  • experimental-2025-05-08
41 results

modules

Blame
  • 0028-download.mk-fix-packed-checkout-mirroring-support.patch 1.02 KiB
    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 9176b11c836123a37533c3d6cbaa2650a4f7c73d..130bbc57ba89b4ad0b8e8600f45bf553ad6ecfa1 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