]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
binutils: bump 2.28.x series to 2.28.1
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 29 Jul 2017 13:09:03 +0000 (15:09 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 31 Jul 2017 19:26:33 +0000 (21:26 +0200)
binutils 2.28.1 is a bug-fix release of the 2.28.x branch, so let's
switch to it.

Since a xz-compressed tarball is available, we use it instead of the
bz2-compressed one.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/binutils/2.28.1/0120-sh-conf.patch [moved from package/binutils/2.28/0120-sh-conf.patch with 100% similarity]
package/binutils/2.28.1/0300-ld-makefile.patch [moved from package/binutils/2.28/0300-ld-makefile.patch with 100% similarity]
package/binutils/2.28.1/0301-check-ldrunpath-length.patch [moved from package/binutils/2.28/0301-check-ldrunpath-length.patch with 100% similarity]
package/binutils/2.28.1/0500-add-sysroot-fix-from-bug-3049.patch [moved from package/binutils/2.28/0500-add-sysroot-fix-from-bug-3049.patch with 100% similarity]
package/binutils/2.28.1/0600-poison-system-directories.patch [moved from package/binutils/2.28/0600-poison-system-directories.patch with 100% similarity]
package/binutils/2.28.1/0905-bfin-rofixup-bug.patch [moved from package/binutils/2.28/0905-bfin-rofixup-bug.patch with 100% similarity]
package/binutils/2.28.1/0906-microblaze-pr21180.patch [moved from package/binutils/2.28/0906-microblaze-pr21180.patch with 100% similarity]
package/binutils/Config.in.host
package/binutils/binutils.hash
package/binutils/binutils.mk

index 03ddf62cbc2598152ef3c1ee06034271fe90df64..3045cb504b39465d943f98d98676c03fbae2058f 100644 (file)
@@ -17,7 +17,7 @@ config BR2_BINUTILS_VERSION_2_27_X
        depends on !(BR2_arm && !BR2_USE_MMU)
 
 config BR2_BINUTILS_VERSION_2_28_X
-       bool "binutils 2.28"
+       bool "binutils 2.28.1"
 
 endchoice
 
@@ -26,7 +26,7 @@ config BR2_BINUTILS_VERSION
        default "arc-2017.03"   if BR2_arc
        default "2.26.1"        if BR2_BINUTILS_VERSION_2_26_X
        default "2.27"          if BR2_BINUTILS_VERSION_2_27_X
-       default "2.28"          if BR2_BINUTILS_VERSION_2_28_X
+       default "2.28.1"        if BR2_BINUTILS_VERSION_2_28_X
 
 config BR2_BINUTILS_ENABLE_LTO
        bool
index 5a7062004e3200af5e3e0f9c80fb693ecfd9202a..563f23dca0668971bfc7519fd4223c09c8370c70 100644 (file)
@@ -1,7 +1,7 @@
 # From ftp://gcc.gnu.org/pub/binutils/releases/sha512.sum
 sha512  9d9165609fd3b0f20d616f9891fc8e2b466eb13e2bfce40125e12427f8f201d20e2b8322bb6cb2b45e8df812f0e8ac059149f8a1f69ba3ed9d86a35c6a540b67  binutils-2.26.1.tar.bz2
 sha512 cf276f84935312361a2ca077e04d0b469d23a3aed979d8ba5d92ea590904ffb2c2e7ed12cc842822bfc402836be86f479660cef3791aa62f3753d8a1a6f564cb  binutils-2.27.tar.bz2
-sha512 ede2e4e59a800260eea8c14eafbaee94e30abadafd5c419a3370f9f62213cf027d6400a1d4970b6958bd4d220e675dcd483a708107016e7abd5c99d7392ba8fd  binutils-2.28.tar.bz2
+sha512 dc5b6872ae01c07c12d38f3bb7ead06effc6da3265ac872e2d9c6104304f89f85f2645b029a43f308a7938a7299b1928d385205d0a2245674a621649032a138d  binutils-2.28.1.tar.xz
 
 # Locally calculated (fetched from Github)
 sha512  07d5639e74eafe8fced259870c1a7dedee67c534573dda53fb78ee1ffeec9e17479fdde41dccd03b1cf0248023acbef7f66013398b2f722e4a8891ac680d1d16  binutils-arc-2017.03.tar.gz
index ec85ad69cbc0de2e86ed204ab41db90be6c8cf43..30ced3ffc3df8a0e6c96b9fba3a61b24069f35b3 100644 (file)
@@ -21,7 +21,11 @@ BINUTILS_SOURCE = binutils-$(BINUTILS_VERSION).tar.gz
 BINUTILS_FROM_GIT = y
 endif
 BINUTILS_SITE ?= $(BR2_GNU_MIRROR)/binutils
+ifeq ($(BINUTILS_VERSION),2.28.1)
+BINUTILS_SOURCE ?= binutils-$(BINUTILS_VERSION).tar.xz
+else
 BINUTILS_SOURCE ?= binutils-$(BINUTILS_VERSION).tar.bz2
+endif
 BINUTILS_EXTRA_CONFIG_OPTIONS = $(call qstrip,$(BR2_BINUTILS_EXTRA_CONFIG_OPTIONS))
 BINUTILS_INSTALL_STAGING = YES
 BINUTILS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)