Commit 1d63e8a8 authored by Eric Andersen's avatar Eric Andersen
Browse files

Make the sourceforge mirror site a config option, as sourceforge

mirrors tend to change, move, go down, etc from time to time.
parent 8365078d
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -107,6 +107,15 @@ config BR2_TAR_VERBOSITY
	bool "Tar verbose"
	default n

config BR2_SOURCEFORGE_MIRROR
        string "Sourceforge mirror site"
	default "unc"
	help
	    Sourceforge has a system of mirror sites.  Some sites may be closer
	    to your location, and sometimes mirror sites go down and are no longer
	    available.  This option allows you to select your preferred Sourceforge
	    mirror site.

config BR2_STAGING_DIR
	string "Toolchain and header file location?"
	default "$(BUILD_DIR)/staging_dir"
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
#############################################################
#
BRIDGE_SOURCE_URL=http://umn.dl.sourceforge.net/sourceforge/bridge/
BRIDGE_SOURCE_URL=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/bridge/
BRIDGE_SOURCE=bridge-utils-1.0.4.tar.gz
BRIDGE_BUILD_DIR=$(BUILD_DIR)/bridge-utils-1.0.4
BRIDGE_TARGET_BINARY:=usr/sbin/brctl
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
#############################################################
E2FSPROGS_VER:=1.37
E2FSPROGS_SOURCE=e2fsprogs-$(E2FSPROGS_VER).tar.gz
E2FSPROGS_SITE=http://telia.dl.sourceforge.net/sourceforge/e2fsprogs
E2FSPROGS_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/e2fsprogs
E2FSPROGS_DIR=$(BUILD_DIR)/e2fsprogs-$(E2FSPROGS_VER)
E2FSPROGS_CAT:=zcat
E2FSPROGS_BINARY:=misc/mke2fs
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
#############################################################
FREETYPE_VERSION:=2.1.9
FREETYPE_SOURCE:=freetype-$(FREETYPE_VERSION).tar.bz2
FREETYPE_SITE:=http://telia.dl.sourceforge.net/sourceforge/freetype
FREETYPE_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/freetype
FREETYPE_CAT:=bzcat
FREETYPE_DIR:=$(BUILD_DIR)/freetype-$(FREETYPE_VERSION)

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
#############################################################
HOTPLUG_SOURCE=diethotplug-0.4.tar.gz
HOTPLUG_SITE=http://aleron.dl.sourceforge.net/sourceforge/linux-hotplug
HOTPLUG_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/linux-hotplug
HOTPLUG_DIR=$(BUILD_DIR)/diethotplug-0.4

$(DL_DIR)/$(HOTPLUG_SOURCE):
Loading