diff options
author | Peter Seiderer <ps.report@gmx.net> | 2015-01-13 20:40:01 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-14 20:40:25 +0100 |
commit | 12c3bc1f230fffde14b3d58e0c79c0bcc8124da2 (patch) | |
tree | cadb380312dd597e21af257891c8b82bf4537ba1 /package/dtc | |
parent | e51be5039f7a85967054ee24628e4eba4ccc7446 (diff) | |
download | buildroot-12c3bc1f230fffde14b3d58e0c79c0bcc8124da2.tar.gz buildroot-12c3bc1f230fffde14b3d58e0c79c0bcc8124da2.zip |
dtc: fix project and download url
This fix the error:
fatal: unable to connect to git.jdl.com:
git.jdl.com[0: 208.123.73.151]: errno=Connection refused
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/dtc')
-rw-r--r-- | package/dtc/Config.in | 2 | ||||
-rw-r--r-- | package/dtc/dtc.mk | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/package/dtc/Config.in b/package/dtc/Config.in index 7b02dd22a9..39223f7226 100644 --- a/package/dtc/Config.in +++ b/package/dtc/Config.in @@ -8,7 +8,7 @@ config BR2_PACKAGE_DTC Note that only the library is installed. If you want the programs, say 'y' here, and to "dtc programs", below. - http://git.jdl.com/gitweb/?p=dtc.git (no home page) + https://git.kernel.org/cgit/utils/dtc/dtc.git if BR2_PACKAGE_DTC diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk index 51b5b4e3c7..6fd5064e75 100644 --- a/package/dtc/dtc.mk +++ b/package/dtc/dtc.mk @@ -4,8 +4,9 @@ # ################################################################################ -DTC_VERSION = v1.4.0 -DTC_SITE = git://git.jdl.com/software/dtc.git +DTC_VERSION = 1.4.0 +DTC_SOURCE = dtc-$(DTC_VERSION).tar.xz +DTC_SITE = https://www.kernel.org/pub/software/utils/dtc DTC_LICENSE = GPLv2+/BSD-2c DTC_LICENSE_FILES = README.license GPL DTC_INSTALL_STAGING = YES |