diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2015-06-06 13:49:24 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2015-06-06 13:49:24 +0000 |
commit | da0a29b323c1236bde43179a9d16506d751329d6 (patch) | |
tree | 27773a6a90856f8a0631cfbfa6727e1e664c84fb /package/boot | |
parent | a44cfd03f9776d43c7f18d56c9704e2c9020603d (diff) | |
download | upstream-da0a29b323c1236bde43179a9d16506d751329d6.tar.gz upstream-da0a29b323c1236bde43179a9d16506d751329d6.tar.bz2 upstream-da0a29b323c1236bde43179a9d16506d751329d6.zip |
grub: add download mirrors
Add three download mirrors for 'grub', as the Makefile currently defines only
one download location.
@GNU can not be used, as the most recent version of 'grub' is not available
at the general GNU mirrors, and can only be found at the "gnu-alpha" mirrors.
Signed-off-by: Hannu Nyman <hannu.nyman at iki.fi>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45909 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/boot')
-rw-r--r-- | package/boot/grub2/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/boot/grub2/Makefile b/package/boot/grub2/Makefile index 64a30589d0..203e426b77 100644 --- a/package/boot/grub2/Makefile +++ b/package/boot/grub2/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -13,7 +13,10 @@ PKG_VERSION:=2.02~beta2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=http://alpha.gnu.org/gnu/grub +PKG_SOURCE_URL:=http://alpha.gnu.org/gnu/grub \ + http://gnualpha.uib.no/grub/ \ + http://mirrors.fe.up.pt/pub/gnu-alpha/grub/ \ + http://www.nic.funet.fi/pub/gnu/alpha/gnu/grub/ PKG_MD5SUM:=be62932eade308a364ea4bbc91295930 HOST_BUILD_PARALLEL:=1 |