* [Buildroot] [PATCH 01/01] sngrep: bump version to v1.4.3
From: Adam Duskett @ 2017-05-25 14:34 UTC (permalink / raw)
To: buildroot
The two patches were committed upstream.
Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
.../0001-src-Makefile.am-don-t-use-VPATH.patch | 43 -------------
...e.ac-switch-to-pkg-config-to-find-openssl.patch | 75 ----------------------
package/sngrep/sngrep.hash | 2 +-
package/sngrep/sngrep.mk | 2 +-
4 files changed, 2 insertions(+), 120 deletions(-)
delete mode 100644 package/sngrep/0001-src-Makefile.am-don-t-use-VPATH.patch
delete mode 100644 package/sngrep/0002-configure.ac-switch-to-pkg-config-to-find-openssl.patch
diff --git a/package/sngrep/0001-src-Makefile.am-don-t-use-VPATH.patch b/package/sngrep/0001-src-Makefile.am-don-t-use-VPATH.patch
deleted file mode 100644
index 3d98203..0000000
--- a/package/sngrep/0001-src-Makefile.am-don-t-use-VPATH.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From b6dcae8ec4334e2436cfa19a8052c3473f57a586 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Sat, 4 Mar 2017 15:02:43 +0100
-Subject: [PATCH 1/2] src/Makefile.am: don't use VPATH
-
-VPATH is a mechanism used to allow out-of-tree build, not to use source
-code from a different directory. For this purpose, one should simply use
-the "subdir-objects" AUTOMAKE_OPTIONS, and reference the source code of
-the sub-directory in the <prog>_SOURCES variable.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Upstream-status: https://github.com/irontec/sngrep/pull/176
----
- src/Makefile.am | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 931ee06..961f4a0 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -1,5 +1,5 @@
-+AUTOMAKE_OPTIONS=subdir-objects
- bin_PROGRAMS=sngrep
--VPATH=curses
- sngrep_SOURCES=capture.c
- if USE_EEP
- sngrep_SOURCES+=capture_eep.c
-@@ -12,8 +12,8 @@ sngrep_SOURCES+=capture_openssl.c
- endif
- sngrep_SOURCES+=address.c packet.c sip.c sip_call.c sip_msg.c sip_attr.c main.c
- sngrep_SOURCES+=option.c group.c filter.c keybinding.c media.c setting.c rtp.c
--sngrep_SOURCES+=util.c hash.c vector.c ui_panel.c scrollbar.c
--sngrep_SOURCES+=ui_manager.c ui_call_list.c ui_call_flow.c ui_call_raw.c
--sngrep_SOURCES+=ui_stats.c ui_filter.c ui_save.c ui_msg_diff.c
--sngrep_SOURCES+=ui_column_select.c ui_settings.c
-+sngrep_SOURCES+=util.c hash.c vector.c curses/ui_panel.c curses/scrollbar.c
-+sngrep_SOURCES+=curses/ui_manager.c curses/ui_call_list.c curses/ui_call_flow.c curses/ui_call_raw.c
-+sngrep_SOURCES+=curses/ui_stats.c curses/ui_filter.c curses/ui_save.c curses/ui_msg_diff.c
-+sngrep_SOURCES+=curses/ui_column_select.c curses/ui_settings.c
-
---
-2.7.4
-
diff --git a/package/sngrep/0002-configure.ac-switch-to-pkg-config-to-find-openssl.patch b/package/sngrep/0002-configure.ac-switch-to-pkg-config-to-find-openssl.patch
deleted file mode 100644
index b51581f..0000000
--- a/package/sngrep/0002-configure.ac-switch-to-pkg-config-to-find-openssl.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-From 22b08ab1a45eb3773b3c90dc37a31a7574520daa Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Sat, 4 Mar 2017 14:56:53 +0100
-Subject: [PATCH 2/2] configure.ac: switch to pkg-config to find openssl
-
-Using AC_CHECK_LIB() doesn't work properly for static linking, because
-it doesn't return information on transitive dependencies of
-libraries. For example, if library A internally uses library B, then
-with dynamic linking, doing -lA is sufficient. However, with static
-linking, one must do -lA -lB, and AC_CHECK_LIB() will only give the -lA
-information. This for example causes a build failure when building
-sngrep statically with openssl enabled:
-
-checking for SSL_new in -lssl... no
-configure: error: You need to have libssl installed to compile sngrep
-
-due to undefined symbols in the OpenSSL library.
-
-The proper solution for this is to discover the library using
-pkg-config, because pkg-config properly returns the list of necessary
-libraries, as it understands the concept of "list of libraries needed
-when dynamic linking" and "list of libraries needed for static linking".
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Upstream-status: https://github.com/irontec/sngrep/pull/176
----
- configure.ac | 9 +--------
- src/Makefile.am | 4 ++++
- 2 files changed, 5 insertions(+), 8 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 42e00e9..9f8e6d2 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -129,14 +129,7 @@ AS_IF([test "x$WITH_OPENSSL" == "xyes"], [
- AS_IF([test "x$WITH_GNUTLS" == "xyes"], [
- AC_MSG_ERROR([ GnuTLS and OpenSSL can not be enabled at the same time ])
- ], [])
--
-- AC_CHECK_LIB([ssl], [SSL_new], [], [
-- AC_MSG_ERROR([ You need to have libssl installed to compile sngrep])
-- ])
--
-- AC_CHECK_LIB([crypto], [EVP_get_cipherbyname], [], [
-- AC_MSG_ERROR([ You need to have libcrypto installed to compile sngrep])
-- ])
-+ PKG_CHECK_MODULES([SSL], [libssl libcrypto])
- AC_DEFINE([WITH_OPENSSL],[],[Compile With Openssl compatibility])
- ], [])
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 961f4a0..3a471b7 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -1,6 +1,8 @@
- AUTOMAKE_OPTIONS=subdir-objects
- bin_PROGRAMS=sngrep
- sngrep_SOURCES=capture.c
-+sngrep_CFLAGS=
-+sngrep_LDADD=
- if USE_EEP
- sngrep_SOURCES+=capture_eep.c
- endif
-@@ -9,6 +11,8 @@ sngrep_SOURCES+=capture_gnutls.c
- endif
- if WITH_OPENSSL
- sngrep_SOURCES+=capture_openssl.c
-+sngrep_CFLAGS+=$(SSL_CFLAGS)
-+sngrep_LDADD+=$(SSL_LIBS)
- endif
- sngrep_SOURCES+=address.c packet.c sip.c sip_call.c sip_msg.c sip_attr.c main.c
- sngrep_SOURCES+=option.c group.c filter.c keybinding.c media.c setting.c rtp.c
---
-2.7.4
-
diff --git a/package/sngrep/sngrep.hash b/package/sngrep/sngrep.hash
index dd75f89..bc28545 100644
--- a/package/sngrep/sngrep.hash
+++ b/package/sngrep/sngrep.hash
@@ -1 +1 @@
-sha256 30fbfb4f90ed8805194b39683a8a2ed465776ffd60df4482bd029d63b316b3f1 sngrep-v1.4.2.tar.gz
+sha256 7385ac202de6d6a1feffb2fd514600563133d9dfa7fb47be052de839abcc1d52 sngrep-v1.4.3.tar.gz
diff --git a/package/sngrep/sngrep.mk b/package/sngrep/sngrep.mk
index 74b05b1..560872f 100644
--- a/package/sngrep/sngrep.mk
+++ b/package/sngrep/sngrep.mk
@@ -4,7 +4,7 @@
#
################################################################################
-SNGREP_VERSION = v1.4.2
+SNGREP_VERSION = v1.4.3
SNGREP_SITE = $(call github,irontec,sngrep,$(SNGREP_VERSION))
SNGREP_LICENSE = GPL-3.0+
SNGREP_LICENSE_FILES = LICENSE
--
2.9.4
^ permalink raw reply related
* [Buildroot] [PATCH] toolchain: Bump ARC tools to arc-2017.03 release
From: Thomas Petazzoni @ 2017-05-25 13:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1495719401.3673.4.camel@synopsys.com>
Hello,
On Thu, 25 May 2017 13:36:42 +0000, Alexey Brodkin wrote:
> That's well understood indeed.
> But that was the whole point of keeping up with RCs of ARC tools in
> Buildroot's RCs so we can finally bump to the release.
>
> Just for the record below are changes in between rc2 and final release.
>
> GCC:
> e406b240f26e - [FIX] Typo (10 days ago) <claziss>
> 139fed9d29ab - [FIX] PIC: return false for any PIC related??unspecs (10 days ago) <Claudiu Zissulescu>
> fd593a115f30 - Revert "Changed filename for the expected dynamic loader for glibc." (2 weeks ago) <Vineet Gupta>
> 566195a06808 - Small fix to unwinding in ARC700. (2 weeks ago) <Cupertino Miranda>
> 7d380d8350a6 - [ARC] Update sleep builtin. (2 weeks ago) <claziss>
>
> Binutils:
> bf4076d02bdd - [FIX] revert jli: don't check for argument alignment (7 days ago) <claziss>
> 7ed115c021fb - [ARC] Update MAX_INSN_FLGS. (7 days ago) <claziss>
> ed389633c649 - [ARC] Reformat error messages. (7 days ago) <claziss>
> f27d6d99f566 - [ARC] Add ldi_base and ei_base aux regs (13 days ago) <claziss>
> e02bf1fe7f06 - [JLI][FIX] Add test ld/testsuite/ld-arc/jli-overflow. Correct jli reloc (13 days ago) <claziss>
>
> Hopefully these fixes won't cause more pain :)
OK, thanks for the details!
I have rebuilt and deployed the pre-built ARC toolchain.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH] Revert "libcdio: disable on ARC, triggers a toolchain bug"
From: Thomas Petazzoni @ 2017-05-25 13:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170516073213.9321-1-abrodkin@synopsys.com>
Hello,
On Tue, 16 May 2017 10:32:13 +0300, Alexey Brodkin wrote:
> This reverts commit 459f7302df8cdc45aa0f7f2581ebb6f05fb6432a.
>
> libcdio building is fixed for ARC in
> 2b360bd547f1 "gcc: arc-2017.03-rc2: Fix "unrecognized supposed constant" error"
>
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> ---
> package/libcdio/Config.in | 2 --
> 1 file changed, 2 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] Revert "libcdio: disable on ARC, triggers a toolchain bug"
From: Thomas Petazzoni @ 2017-05-25 13:54 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=2c1d080c2dc75fb021ace02472c8db0f2538e481
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
This reverts commit 459f7302df8cdc45aa0f7f2581ebb6f05fb6432a.
libcdio building is fixed for ARC in
2b360bd547f1 "gcc: arc-2017.03-rc2: Fix "unrecognized supposed constant" error"
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libcdio/Config.in | 2 --
1 file changed, 2 deletions(-)
diff --git a/package/libcdio/Config.in b/package/libcdio/Config.in
index 531af3b..fdc001e 100644
--- a/package/libcdio/Config.in
+++ b/package/libcdio/Config.in
@@ -1,8 +1,6 @@
config BR2_PACKAGE_LIBCDIO
bool "libcdio"
depends on BR2_USE_MMU # fork()
- # ARC toolchain issue
- depends on !BR2_arc
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
help
The GNU Compact Disc Input and Control library.
^ permalink raw reply related
* [Buildroot] [PATCH next 1/2] python-pytablewriter: bump version to 0.19.8
From: Thomas Petazzoni @ 2017-05-25 13:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170525100543.889-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 25 May 2017 11:05:42 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/python-pytablewriter/python-pytablewriter.hash | 4 ++--
> package/python-pytablewriter/python-pytablewriter.mk | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
Both applied to next, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [v2,next,01/11] gstreamer1: bump version to 1.12.0
From: Theore Ateba @ 2017-05-25 13:40 UTC (permalink / raw)
To: buildroot
Tested-by: Theodore Ateba, tf.ateba at gmail.com
Build test:
Gstreamer1-v1.12.0 was build successfully with glibc-v2.24 and qt5.8 on x86_64 PC for a Beaglebone black.
Runtime test:
The run time test was made on Beaglebone Black board.
I made the test of some Qt examples applications, such as opengl-hellowindows and keyinteraction.
I have attached the configuration used to test gstreamer.
thanks, Theodore Ateba.
On May 12, 2017, 10:17 a.m, Vicente Olivert Riera wrote:
<https://patchwork.ozlabs.org/project/buildroot/list/?submitter=46496>
0001 patch already included in this release:
https://github.com/GStreamer/gstreamer/commit/c893882fd93238ce722096ecf4db87b6a9f87c5d
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
Changes v1 -> v2:
- Nothing.
---
....in-Fix-unaligned-access-support-for-the-.patch | 33 ----------------------
package/gstreamer1/gstreamer1/gstreamer1.hash | 4 +--
package/gstreamer1/gstreamer1/gstreamer1.mk | 2 +-
3 files changed, 3 insertions(+), 36 deletions(-)
delete mode 100644 package/gstreamer1/gstreamer1/0001-gstconfig.h.in-Fix-unaligned-access-support-for-the-.patch
diff --git a/package/gstreamer1/gstreamer1/0001-gstconfig.h.in-Fix-unaligned-access-support-for-the-.patch b/package/gstreamer1/gstreamer1/0001-gstconfig.h.in-Fix-unaligned-access-support-for-the-.patch
deleted file mode 100644
index 88f3373..0000000
--- a/package/gstreamer1/gstreamer1/0001-gstconfig.h.in-Fix-unaligned-access-support-for-the-.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 437b3e38d9127ae021ca8510709c2e6be3e6b819 Mon Sep 17 00:00:00 2001
-From: Peter Korsgaard <peter@korsgaard.com>
-Date: Sat, 18 Feb 2017 10:03:24 +0100
-Subject: [PATCH] gstconfig.h.in: Fix unaligned access support for the openrisc
- architecture
-
-Teach gstconfig.h.in about the openrisc (or1k) architecture. Fixes
-buildroot autobuild failure:
-
-http://autobuild.buildroot.net/results/717/717d78ce0935749f477bdf3133b6f20057a28c01/build-end.log
-
-Submitted-upstream: https://bugzilla.gnome.org/show_bug.cgi?id=778866
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
- gst/gstconfig.h.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gst/gstconfig.h.in b/gst/gstconfig.h.in
-index cf95f61ab..1b2ca64ac 100644
---- a/gst/gstconfig.h.in
-+++ b/gst/gstconfig.h.in
-@@ -104,7 +104,7 @@
- * http://docs.oracle.com/cd/E19205-01/820-4155/c++_faq.html#Vers6
- * https://software.intel.com/en-us/node/583402
- */
--#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_IA64) || defined(__xtensa__)
-+#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__or1k__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_IA64) || defined(__xtensa__)
- # define GST_HAVE_UNALIGNED_ACCESS 0
- #elif defined(__i386__) || defined(__i386) || defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__ppc__) || defined(__ppc64__) || defined(__powerpc__) || defined(__powerpc64__) || defined(__m68k__) || defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || defined(__s390__) || defined(__s390x__) || defined(__zarch__)
- # define GST_HAVE_UNALIGNED_ACCESS 1
---
-2.11.0
-
diff --git a/package/gstreamer1/gstreamer1/gstreamer1.hash b/package/gstreamer1/gstreamer1/gstreamer1.hash
index 455e7fb..56e1c17 100644
--- a/package/gstreamer1/gstreamer1/gstreamer1.hash
+++ b/package/gstreamer1/gstreamer1/gstreamer1.hash
@@ -1,2 +1,2 @@
-# From http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.10.4.tar.xz.sha256sum
-sha256 50c2f5af50a6cc6c0a3f3ed43bdd8b5e2bff00bacfb766d4be139ec06d8b5218 gstreamer-1.10.4.tar.xz
+# From http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.12.0.tar.xz.sha256sum
+sha256 14d5eef8297d2bf2a728d38fa43cd92cc267a0ad260cf83d770215212aff4302 gstreamer-1.12.0.tar.xz
diff --git a/package/gstreamer1/gstreamer1/gstreamer1.mk b/package/gstreamer1/gstreamer1/gstreamer1.mk
index fc756c3..ac498d5 100644
--- a/package/gstreamer1/gstreamer1/gstreamer1.mk
+++ b/package/gstreamer1/gstreamer1/gstreamer1.mk
@@ -4,7 +4,7 @@
#
################################################################################
-GSTREAMER1_VERSION = 1.10.4
+GSTREAMER1_VERSION = 1.12.0
GSTREAMER1_SOURCE = gstreamer-$(GSTREAMER1_VERSION).tar.xz
GSTREAMER1_SITE = https://gstreamer.freedesktop.org/src/gstreamer
GSTREAMER1_INSTALL_STAGING = YES
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170525/5b3c8822/attachment.html>
-------------- next part --------------
BR2_arm=y
BR2_cortex_a8=y
BR2_GLOBAL_PATCH_DIR="board/beaglebone/patches"
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y
BR2_TARGET_GENERIC_ROOT_PASSWD="root"
BR2_TARGET_GENERIC_GETTY_PORT="ttyO0"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/beaglebone/post-image.sh"
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_GIT=y
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="git://git.ti.com/processor-sdk/processor-sdk-linux.git"
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="52c4aa7cdb93d61f8008f380135beaf7b8fa6593"
BR2_LINUX_KERNEL_DEFCONFIG="omap2plus"
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/beaglebone/linux-4.1-sgx.fragment"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="am335x-evm am335x-bone am335x-boneblack am335x-evmsk"
BR2_PACKAGE_ALSA_UTILS=y
BR2_PACKAGE_GSTREAMER1=y
BR2_PACKAGE_GST1_PLUGINS_GOOD=y
BR2_PACKAGE_GST1_PLUGINS_BAD=y
BR2_PACKAGE_GST1_PLUGINS_UGLY=y
BR2_PACKAGE_BITSTREAM_VERA=y
BR2_PACKAGE_DEJAVU=y
BR2_PACKAGE_FONT_AWESOME=y
BR2_PACKAGE_FBV=y
BR2_PACKAGE_QT5=y
BR2_PACKAGE_QT5BASE_EXAMPLES=y
BR2_PACKAGE_QT5BASE_EGLFS=y
BR2_PACKAGE_QT5BASE_GIF=y
BR2_PACKAGE_QT5BASE_JPEG=y
BR2_PACKAGE_QT5BASE_PNG=y
BR2_PACKAGE_QT5QUICKCONTROLS=y
BR2_PACKAGE_TI_SGX_DEMOS=y
BR2_PACKAGE_TI_SGX_KM=y
BR2_PACKAGE_TI_SGX_UM=y
BR2_PACKAGE_DROPBEAR=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_BLOCKS=126976
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09.01"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="am335x_evm"
BR2_TARGET_UBOOT_NEEDS_DTC=y
# BR2_TARGET_UBOOT_FORMAT_BIN is not set
BR2_TARGET_UBOOT_FORMAT_IMG=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="spl/u-boot-spl.bin"
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="MLO"
BR2_PACKAGE_HOST_DOSFSTOOLS=y
BR2_PACKAGE_HOST_GENIMAGE=y
BR2_PACKAGE_HOST_MTOOLS=y
^ permalink raw reply related
* [Buildroot] [git commit] python-service-identity: bump version to 17.0.0
From: Thomas Petazzoni @ 2017-05-25 13:40 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=3e10c1e46738f28918054bcf5d53ac302dd07cb1
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/python-service-identity/python-service-identity.hash | 4 ++--
package/python-service-identity/python-service-identity.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/python-service-identity/python-service-identity.hash b/package/python-service-identity/python-service-identity.hash
index 09561d8..7caaaf9 100644
--- a/package/python-service-identity/python-service-identity.hash
+++ b/package/python-service-identity/python-service-identity.hash
@@ -1,3 +1,3 @@
# md5 from https://pypi.python.org/pypi/service_identity/json, sha256 locally computed
-md5 d52392597b9c44a740abf322bfdb21e6 service_identity-16.0.0.tar.gz
-sha256 0630e222f59f91f3db498be46b1d879ff220955d7bbad719a5cb9ad14e3c3036 service_identity-16.0.0.tar.gz
+md5 f509cb41ca2f8420bd8496291136d6cc service_identity-17.0.0.tar.gz
+sha256 4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab service_identity-17.0.0.tar.gz
diff --git a/package/python-service-identity/python-service-identity.mk b/package/python-service-identity/python-service-identity.mk
index 88549ab..ccc6e71 100644
--- a/package/python-service-identity/python-service-identity.mk
+++ b/package/python-service-identity/python-service-identity.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_SERVICE_IDENTITY_VERSION = 16.0.0
+PYTHON_SERVICE_IDENTITY_VERSION = 17.0.0
PYTHON_SERVICE_IDENTITY_SOURCE = service_identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz
-PYTHON_SERVICE_IDENTITY_SITE = https://pypi.python.org/packages/f3/2a/7c04e7ab74f9f2be026745a9ffa81fd9d56139fa6f5f4b4c8a8c07b2bfba
+PYTHON_SERVICE_IDENTITY_SITE = https://pypi.python.org/packages/de/2a/cab6e30be82c8fcd2339ef618036720eda954cf05daef514e386661c9221
PYTHON_SERVICE_IDENTITY_LICENSE = MIT
PYTHON_SERVICE_IDENTITY_LICENSE_FILES = LICENSE
PYTHON_SERVICE_IDENTITY_SETUP_TYPE = setuptools
^ permalink raw reply related
* [Buildroot] [git commit branch/next] python-service-identity: bump version to 17.0.0
From: Thomas Petazzoni @ 2017-05-25 13:40 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=3e10c1e46738f28918054bcf5d53ac302dd07cb1
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/python-service-identity/python-service-identity.hash | 4 ++--
package/python-service-identity/python-service-identity.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/python-service-identity/python-service-identity.hash b/package/python-service-identity/python-service-identity.hash
index 09561d8..7caaaf9 100644
--- a/package/python-service-identity/python-service-identity.hash
+++ b/package/python-service-identity/python-service-identity.hash
@@ -1,3 +1,3 @@
# md5 from https://pypi.python.org/pypi/service_identity/json, sha256 locally computed
-md5 d52392597b9c44a740abf322bfdb21e6 service_identity-16.0.0.tar.gz
-sha256 0630e222f59f91f3db498be46b1d879ff220955d7bbad719a5cb9ad14e3c3036 service_identity-16.0.0.tar.gz
+md5 f509cb41ca2f8420bd8496291136d6cc service_identity-17.0.0.tar.gz
+sha256 4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab service_identity-17.0.0.tar.gz
diff --git a/package/python-service-identity/python-service-identity.mk b/package/python-service-identity/python-service-identity.mk
index 88549ab..ccc6e71 100644
--- a/package/python-service-identity/python-service-identity.mk
+++ b/package/python-service-identity/python-service-identity.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_SERVICE_IDENTITY_VERSION = 16.0.0
+PYTHON_SERVICE_IDENTITY_VERSION = 17.0.0
PYTHON_SERVICE_IDENTITY_SOURCE = service_identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz
-PYTHON_SERVICE_IDENTITY_SITE = https://pypi.python.org/packages/f3/2a/7c04e7ab74f9f2be026745a9ffa81fd9d56139fa6f5f4b4c8a8c07b2bfba
+PYTHON_SERVICE_IDENTITY_SITE = https://pypi.python.org/packages/de/2a/cab6e30be82c8fcd2339ef618036720eda954cf05daef514e386661c9221
PYTHON_SERVICE_IDENTITY_LICENSE = MIT
PYTHON_SERVICE_IDENTITY_LICENSE_FILES = LICENSE
PYTHON_SERVICE_IDENTITY_SETUP_TYPE = setuptools
^ permalink raw reply related
* [Buildroot] [git commit] python-pytablewriter: bump version to 0.19.8
From: Thomas Petazzoni @ 2017-05-25 13:40 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=f317023804642b691775b6791aa484ca9cd1f7fc
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/python-pytablewriter/python-pytablewriter.hash | 4 ++--
package/python-pytablewriter/python-pytablewriter.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/python-pytablewriter/python-pytablewriter.hash b/package/python-pytablewriter/python-pytablewriter.hash
index 570a7ab..533d21a 100644
--- a/package/python-pytablewriter/python-pytablewriter.hash
+++ b/package/python-pytablewriter/python-pytablewriter.hash
@@ -1,3 +1,3 @@
# md5 from https://pypi.python.org/pypi/pytablewriter/json, sha256 locally computed
-md5 0f559538d2d40b1f59904b3bf6c66b35 pytablewriter-0.19.7.tar.gz
-sha256 09c841a08cfcecc51e7ffc1846c5200b9f25ef6a3ed82a1a33f714b1c0d9ef94 pytablewriter-0.19.7.tar.gz
+md5 a2d3fe29adc7708ce986646f41c1d229 pytablewriter-0.19.8.tar.gz
+sha256 b76cb1591504ed1dcdc14ccf383806f45e2027bd72d844e545c6a0d18552d46c pytablewriter-0.19.8.tar.gz
diff --git a/package/python-pytablewriter/python-pytablewriter.mk b/package/python-pytablewriter/python-pytablewriter.mk
index 24a4d2e..ddbc17b 100644
--- a/package/python-pytablewriter/python-pytablewriter.mk
+++ b/package/python-pytablewriter/python-pytablewriter.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_PYTABLEWRITER_VERSION = 0.19.7
+PYTHON_PYTABLEWRITER_VERSION = 0.19.8
PYTHON_PYTABLEWRITER_SOURCE = pytablewriter-$(PYTHON_PYTABLEWRITER_VERSION).tar.gz
-PYTHON_PYTABLEWRITER_SITE = https://pypi.python.org/packages/2d/5d/02baae4e38413608a77abec5f4ad9a665ba788802e84d7f84cfd9fbe49a2
+PYTHON_PYTABLEWRITER_SITE = https://pypi.python.org/packages/9b/89/1883fcd076f40034539f577b033636b20d9a7983a8ba99e9b8ef11b680b2
PYTHON_PYTABLEWRITER_SETUP_TYPE = setuptools
PYTHON_PYTABLEWRITER_LICENSE = MIT
PYTHON_PYTABLEWRITER_LICENSE_FILES = LICENSE
^ permalink raw reply related
* [Buildroot] [git commit branch/next] python-pytablewriter: bump version to 0.19.8
From: Thomas Petazzoni @ 2017-05-25 13:40 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=f317023804642b691775b6791aa484ca9cd1f7fc
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/python-pytablewriter/python-pytablewriter.hash | 4 ++--
package/python-pytablewriter/python-pytablewriter.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/python-pytablewriter/python-pytablewriter.hash b/package/python-pytablewriter/python-pytablewriter.hash
index 570a7ab..533d21a 100644
--- a/package/python-pytablewriter/python-pytablewriter.hash
+++ b/package/python-pytablewriter/python-pytablewriter.hash
@@ -1,3 +1,3 @@
# md5 from https://pypi.python.org/pypi/pytablewriter/json, sha256 locally computed
-md5 0f559538d2d40b1f59904b3bf6c66b35 pytablewriter-0.19.7.tar.gz
-sha256 09c841a08cfcecc51e7ffc1846c5200b9f25ef6a3ed82a1a33f714b1c0d9ef94 pytablewriter-0.19.7.tar.gz
+md5 a2d3fe29adc7708ce986646f41c1d229 pytablewriter-0.19.8.tar.gz
+sha256 b76cb1591504ed1dcdc14ccf383806f45e2027bd72d844e545c6a0d18552d46c pytablewriter-0.19.8.tar.gz
diff --git a/package/python-pytablewriter/python-pytablewriter.mk b/package/python-pytablewriter/python-pytablewriter.mk
index 24a4d2e..ddbc17b 100644
--- a/package/python-pytablewriter/python-pytablewriter.mk
+++ b/package/python-pytablewriter/python-pytablewriter.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_PYTABLEWRITER_VERSION = 0.19.7
+PYTHON_PYTABLEWRITER_VERSION = 0.19.8
PYTHON_PYTABLEWRITER_SOURCE = pytablewriter-$(PYTHON_PYTABLEWRITER_VERSION).tar.gz
-PYTHON_PYTABLEWRITER_SITE = https://pypi.python.org/packages/2d/5d/02baae4e38413608a77abec5f4ad9a665ba788802e84d7f84cfd9fbe49a2
+PYTHON_PYTABLEWRITER_SITE = https://pypi.python.org/packages/9b/89/1883fcd076f40034539f577b033636b20d9a7983a8ba99e9b8ef11b680b2
PYTHON_PYTABLEWRITER_SETUP_TYPE = setuptools
PYTHON_PYTABLEWRITER_LICENSE = MIT
PYTHON_PYTABLEWRITER_LICENSE_FILES = LICENSE
^ permalink raw reply related
* [Buildroot] [PATCH next] vdr: bump version to 2.3.5
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170525100721.2071-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 25 May 2017 11:07:21 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/vdr/vdr.hash | 6 +++---
> package/vdr/vdr.mk | 2 +-
> 2 files changed, 4 insertions(+), 4 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH next] moarvm: bump version to 2017.05
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170525100627.1429-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 25 May 2017 11:06:27 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/moarvm/moarvm.hash | 2 +-
> package/moarvm/moarvm.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] vdr: bump version to 2.3.5
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=480796ad9e85c3ae392a25c8cefb363b7ece5a5f
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/vdr/vdr.hash | 6 +++---
package/vdr/vdr.mk | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/vdr/vdr.hash b/package/vdr/vdr.hash
index b4800d5..2ced98d 100644
--- a/package/vdr/vdr.hash
+++ b/package/vdr/vdr.hash
@@ -1,4 +1,4 @@
-# From https://www.linuxtv.org/pipermail/vdr/2017-April/029243.html
-md5 7b1c985d5e7703f7ec46e3818f546702 vdr-2.3.4.tar.bz2
+# From https://www.linuxtv.org/pipermail/vdr/2017-May/029263.html
+md5 01fabef4d20ec01f11d53354d99a9642 vdr-2.3.5.tar.bz2
# Locally computed
-sha256 97600301e8bb16ac6a6ed58c0b7c18a48e3ab1cc7130311d405178109777c03a vdr-2.3.4.tar.bz2
+sha256 323fd01e4f8daef24bbdcb906023d18c998a204a22de110d1cb0089532e818b5 vdr-2.3.5.tar.bz2
diff --git a/package/vdr/vdr.mk b/package/vdr/vdr.mk
index 6940813..6c46566 100644
--- a/package/vdr/vdr.mk
+++ b/package/vdr/vdr.mk
@@ -4,7 +4,7 @@
#
################################################################################
-VDR_VERSION = 2.3.4
+VDR_VERSION = 2.3.5
VDR_SOURCE = vdr-$(VDR_VERSION).tar.bz2
VDR_SITE = ftp://ftp.tvdr.de/vdr/Developer
VDR_LICENSE = GPL-2.0+
^ permalink raw reply related
* [Buildroot] [git commit branch/next] vdr: bump version to 2.3.5
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=480796ad9e85c3ae392a25c8cefb363b7ece5a5f
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/vdr/vdr.hash | 6 +++---
package/vdr/vdr.mk | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/vdr/vdr.hash b/package/vdr/vdr.hash
index b4800d5..2ced98d 100644
--- a/package/vdr/vdr.hash
+++ b/package/vdr/vdr.hash
@@ -1,4 +1,4 @@
-# From https://www.linuxtv.org/pipermail/vdr/2017-April/029243.html
-md5 7b1c985d5e7703f7ec46e3818f546702 vdr-2.3.4.tar.bz2
+# From https://www.linuxtv.org/pipermail/vdr/2017-May/029263.html
+md5 01fabef4d20ec01f11d53354d99a9642 vdr-2.3.5.tar.bz2
# Locally computed
-sha256 97600301e8bb16ac6a6ed58c0b7c18a48e3ab1cc7130311d405178109777c03a vdr-2.3.4.tar.bz2
+sha256 323fd01e4f8daef24bbdcb906023d18c998a204a22de110d1cb0089532e818b5 vdr-2.3.5.tar.bz2
diff --git a/package/vdr/vdr.mk b/package/vdr/vdr.mk
index 6940813..6c46566 100644
--- a/package/vdr/vdr.mk
+++ b/package/vdr/vdr.mk
@@ -4,7 +4,7 @@
#
################################################################################
-VDR_VERSION = 2.3.4
+VDR_VERSION = 2.3.5
VDR_SOURCE = vdr-$(VDR_VERSION).tar.bz2
VDR_SITE = ftp://ftp.tvdr.de/vdr/Developer
VDR_LICENSE = GPL-2.0+
^ permalink raw reply related
* [Buildroot] [git commit] moarvm: bump version to 2017.05
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=51e022fd8d6be23e343a8305c787f9566da5dcdf
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/moarvm/moarvm.hash | 2 +-
package/moarvm/moarvm.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/moarvm/moarvm.hash b/package/moarvm/moarvm.hash
index 5571c62..409486a 100644
--- a/package/moarvm/moarvm.hash
+++ b/package/moarvm/moarvm.hash
@@ -1,2 +1,2 @@
# Locally computed
-sha256 7838c92e50afe75669f751db8e15f06666e32d5951d026a89de28f7c7a8c347f MoarVM-2017.04.tar.gz
+sha256 7cb9b7a871b14ac9b6cddc57e646d277177c4b3b21220e6fbc204084a15a4e41 MoarVM-2017.05.tar.gz
diff --git a/package/moarvm/moarvm.mk b/package/moarvm/moarvm.mk
index df5defd..e03d594 100644
--- a/package/moarvm/moarvm.mk
+++ b/package/moarvm/moarvm.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MOARVM_VERSION = 2017.04
+MOARVM_VERSION = 2017.05
MOARVM_SITE = http://moarvm.com/releases
MOARVM_SOURCE = MoarVM-$(MOARVM_VERSION).tar.gz
MOARVM_LICENSE = Artistic-2.0
^ permalink raw reply related
* [Buildroot] [git commit branch/next] moarvm: bump version to 2017.05
From: Thomas Petazzoni @ 2017-05-25 13:39 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=51e022fd8d6be23e343a8305c787f9566da5dcdf
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/moarvm/moarvm.hash | 2 +-
package/moarvm/moarvm.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/moarvm/moarvm.hash b/package/moarvm/moarvm.hash
index 5571c62..409486a 100644
--- a/package/moarvm/moarvm.hash
+++ b/package/moarvm/moarvm.hash
@@ -1,2 +1,2 @@
# Locally computed
-sha256 7838c92e50afe75669f751db8e15f06666e32d5951d026a89de28f7c7a8c347f MoarVM-2017.04.tar.gz
+sha256 7cb9b7a871b14ac9b6cddc57e646d277177c4b3b21220e6fbc204084a15a4e41 MoarVM-2017.05.tar.gz
diff --git a/package/moarvm/moarvm.mk b/package/moarvm/moarvm.mk
index df5defd..e03d594 100644
--- a/package/moarvm/moarvm.mk
+++ b/package/moarvm/moarvm.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MOARVM_VERSION = 2017.04
+MOARVM_VERSION = 2017.05
MOARVM_SITE = http://moarvm.com/releases
MOARVM_SOURCE = MoarVM-$(MOARVM_VERSION).tar.gz
MOARVM_LICENSE = Artistic-2.0
^ permalink raw reply related
* [Buildroot] [PATCH/next v2] package/bootstrap: bump version to 3.3.7
From: Thomas Petazzoni @ 2017-05-25 13:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170524153239.8485-1-bernd.kuhls@t-online.de>
Hello,
On Wed, 24 May 2017 17:32:39 +0200, Bernd Kuhls wrote:
> define BOOTSTRAP_EXTRACT_CMDS
> $(UNZIP) $(DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
> + mv $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist $(@D)/dist
This still wasn't what I wanted to see. I wanted you to drop this
useless dist/ sub-directory, so that output/build/bootstrap-<version>/
directly has the bootstrap source code, with no silly sub-directory. So
I've fixed up EXTRACT_CMDS and INSTALL_TARGET_CMDS and applied to next.
See:
https://git.buildroot.org/buildroot/commit/?h=next&id=cc7e8828729441393c3e825500094ac2fbf54694
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH] toolchain: Bump ARC tools to arc-2017.03 release
From: Alexey Brodkin @ 2017-05-25 13:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170525152739.364680be@free-electrons.com>
Hi Thomas,
On Thu, 2017-05-25 at 15:27 +0200, Thomas Petazzoni wrote:
> Hello,
>
> On Tue, 23 May 2017 21:41:37 +0300, Alexey Brodkin wrote:
> >
> > This commit finally bumps ARC toolchain to arc-2017.03 release.
> > More info on this release could be found here:
> > https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_foss-2Dfor-2Dsynopsys-2Ddwc-2Darc-2Dprocessors_toolchain_releases_tag_arc-2D2017.0
> > 3&d=DwICAg&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=NwE8728l_IQUKFg_WQ1Yxh-
> > LEQ9zHJLRTmkZwaKPAeY&s=MiPhqRzYXkEc1aRWYCVMFpNgmLxqjXg72Ctkq60H2cA&e=?
> >
> > Note mentioned above web-page is not yet populated but should be very soon.
> > As a safe fall-back interested could refer to RC2 page here:
> > https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_foss-2Dfor-2Dsynopsys-2Ddwc-2Darc-2Dprocessors_toolchain_releases_tag_arc-2D2017.0
> > 3-2Drc2&d=DwICAg&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=NwE8728l_IQUKFg_WQ1Yxh-
> > LEQ9zHJLRTmkZwaKPAeY&s=3N44QqVhn9-WVdCqm5Xrlr8VbHVWa5yZuwy7UJa5-0k&e=?
> >
> > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> > Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> > ---
> > ?package/binutils/Config.in.host????????????????????|??2 +-
> > ?.../0300-PATCH-ld-makefile.patch???????????????????|??0
> > ?.../0301-PATCH-check-ldrunpath-length.patch????????|??0
> > ?.../0500-add-sysroot-fix-from-bug-3049.patch???????|??0
> > ?.../0600-poison-system-directories.patch???????????|??0
> > ?package/binutils/binutils.hash?????????????????????|??2 +-
> > ?package/binutils/binutils.mk???????????????????????|??2 +-
> > ?package/gcc/Config.in.host?????????????????????????|??2 +-
> > ?...-return-false-for-any-PIC-related-unspecs.patch | 58 ----------------------
> > ?.../301-missing-execinfo_h.patch???????????????????|??0
> > ?.../860-cilk-wchar.patch???????????????????????????|??0
> > ?.../940-uclinux-enable-threads.patch???????????????|??0
> > ?package/gcc/gcc.hash???????????????????????????????|??2 +-
> > ?package/gdb/Config.in.host?????????????????????????|??2 +-
> > ?package/gdb/gdb.hash???????????????????????????????|??2 +-
> > ?15 files changed, 7 insertions(+), 65 deletions(-)
> > ?rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0300-PATCH-ld-makefile.patch (100%)
> > ?rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0301-PATCH-check-ldrunpath-length.patch (100%)
> > ?rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0500-add-sysroot-fix-from-bug-3049.patch (100%)
> > ?rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0600-poison-system-directories.patch (100%)
> > ?delete mode 100644 package/gcc/arc-2017.03-rc2/0001-FIX-PIC-return-false-for-any-PIC-related-unspecs.patch
> > ?rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/301-missing-execinfo_h.patch (100%)
> > ?rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/860-cilk-wchar.patch (100%)
> > ?rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/940-uclinux-enable-threads.patch (100%)
>
> It's normally way too late for version bumps, but since this is a bump
> from a -rc2 version to the final version, and limited to ARC stuff,
> I've applied it to master. I really hope it won't cause new build
> failures!
That's well understood indeed.
But that was the whole point of keeping up with RCs of ARC tools in
Buildroot's RCs so we can finally bump to the release.
Just for the record below are changes in between rc2 and final release.
GCC:
e406b240f26e - [FIX] Typo (10 days ago) <claziss>
139fed9d29ab - [FIX] PIC: return false for any PIC related??unspecs (10 days ago) <Claudiu Zissulescu>
fd593a115f30 - Revert "Changed filename for the expected dynamic loader for glibc." (2 weeks ago) <Vineet Gupta>
566195a06808 - Small fix to unwinding in ARC700. (2 weeks ago) <Cupertino Miranda>
7d380d8350a6 - [ARC] Update sleep builtin. (2 weeks ago) <claziss>
Binutils:
bf4076d02bdd - [FIX] revert jli: don't check for argument alignment (7 days ago) <claziss>
7ed115c021fb - [ARC] Update MAX_INSN_FLGS. (7 days ago) <claziss>
ed389633c649 - [ARC] Reformat error messages. (7 days ago) <claziss>
f27d6d99f566 - [ARC] Add ldi_base and ei_base aux regs (13 days ago) <claziss>
e02bf1fe7f06 - [JLI][FIX] Add test ld/testsuite/ld-arc/jli-overflow. Correct jli reloc (13 days ago) <claziss>
Hopefully these fixes won't cause more pain :)
-Alexey
^ permalink raw reply
* [Buildroot] [git commit] package/bootstrap: bump version to 3.3.7
From: Thomas Petazzoni @ 2017-05-25 13:34 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=cc7e8828729441393c3e825500094ac2fbf54694
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Extended _EXTRACT_CMDS and _INSTALL_TARGET_CMDS to handle updated
internal zip structure:
$ unzip -l ../dl/bootstrap-3.3.1-dist.zip
Archive: ../dl/bootstrap-3.3.1-dist.zip
Length Date Time Name
--------- ---------- ----- ----
0 2014-11-12 18:03 dist/
0 2014-11-12 18:03 dist/css/
[...]
$ unzip -l ../dl/bootstrap-3.3.7-dist.zip
Archive: ../dl/bootstrap-3.3.7-dist.zip
Length Date Time Name
--------- ---------- ----- ----
0 2016-07-25 15:53 bootstrap-3.3.7-dist/css/
[...]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Thomas: better fix for the EXTRACT_CMDS, which consists in removing the
dist/ sub-directory.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/bootstrap/bootstrap.hash | 2 +-
package/bootstrap/bootstrap.mk | 12 +++++++-----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/package/bootstrap/bootstrap.hash b/package/bootstrap/bootstrap.hash
index acb06b4..abc09da 100644
--- a/package/bootstrap/bootstrap.hash
+++ b/package/bootstrap/bootstrap.hash
@@ -1,2 +1,2 @@
# Locally computed:
-sha256 95ca4a02aff37570660c81a87065b53ebc281c33fa86b91a6a7a650eee10678f bootstrap-3.3.1-dist.zip
+sha256 f498a8ff2dd007e29c2074f5e4b01a9a01775c3ff3aeaf6906ea503bc5791b7b bootstrap-3.3.7-dist.zip
diff --git a/package/bootstrap/bootstrap.mk b/package/bootstrap/bootstrap.mk
index 17752ce..33161f5 100644
--- a/package/bootstrap/bootstrap.mk
+++ b/package/bootstrap/bootstrap.mk
@@ -4,23 +4,25 @@
#
################################################################################
-BOOTSTRAP_VERSION = 3.3.1
+BOOTSTRAP_VERSION = 3.3.7
BOOTSTRAP_SITE = https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAP_VERSION)
BOOTSTRAP_SOURCE = bootstrap-$(BOOTSTRAP_VERSION)-dist.zip
BOOTSTRAP_LICENSE = MIT
define BOOTSTRAP_EXTRACT_CMDS
$(UNZIP) $(DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
+ mv $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist/* $(@D)/
+ rmdir $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist
endef
define BOOTSTRAP_INSTALL_TARGET_CMDS
- $(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap-theme.min.css \
+ $(INSTALL) -m 0644 -D $(@D)/css/bootstrap-theme.min.css \
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap-theme.min.css
- $(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap.min.css \
+ $(INSTALL) -m 0644 -D $(@D)/css/bootstrap.min.css \
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css
- $(INSTALL) -m 0644 -D $(@D)/dist/js/bootstrap.min.js \
+ $(INSTALL) -m 0644 -D $(@D)/js/bootstrap.min.js \
$(TARGET_DIR)/var/www/bootstrap/js/bootstrap.min.js
- cp -r $(@D)/dist/fonts $(TARGET_DIR)/var/www/bootstrap/
+ cp -r $(@D)/fonts $(TARGET_DIR)/var/www/bootstrap/
endef
$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [git commit branch/next] package/bootstrap: bump version to 3.3.7
From: Thomas Petazzoni @ 2017-05-25 13:34 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=cc7e8828729441393c3e825500094ac2fbf54694
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Extended _EXTRACT_CMDS and _INSTALL_TARGET_CMDS to handle updated
internal zip structure:
$ unzip -l ../dl/bootstrap-3.3.1-dist.zip
Archive: ../dl/bootstrap-3.3.1-dist.zip
Length Date Time Name
--------- ---------- ----- ----
0 2014-11-12 18:03 dist/
0 2014-11-12 18:03 dist/css/
[...]
$ unzip -l ../dl/bootstrap-3.3.7-dist.zip
Archive: ../dl/bootstrap-3.3.7-dist.zip
Length Date Time Name
--------- ---------- ----- ----
0 2016-07-25 15:53 bootstrap-3.3.7-dist/css/
[...]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Thomas: better fix for the EXTRACT_CMDS, which consists in removing the
dist/ sub-directory.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/bootstrap/bootstrap.hash | 2 +-
package/bootstrap/bootstrap.mk | 12 +++++++-----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/package/bootstrap/bootstrap.hash b/package/bootstrap/bootstrap.hash
index acb06b4..abc09da 100644
--- a/package/bootstrap/bootstrap.hash
+++ b/package/bootstrap/bootstrap.hash
@@ -1,2 +1,2 @@
# Locally computed:
-sha256 95ca4a02aff37570660c81a87065b53ebc281c33fa86b91a6a7a650eee10678f bootstrap-3.3.1-dist.zip
+sha256 f498a8ff2dd007e29c2074f5e4b01a9a01775c3ff3aeaf6906ea503bc5791b7b bootstrap-3.3.7-dist.zip
diff --git a/package/bootstrap/bootstrap.mk b/package/bootstrap/bootstrap.mk
index 17752ce..33161f5 100644
--- a/package/bootstrap/bootstrap.mk
+++ b/package/bootstrap/bootstrap.mk
@@ -4,23 +4,25 @@
#
################################################################################
-BOOTSTRAP_VERSION = 3.3.1
+BOOTSTRAP_VERSION = 3.3.7
BOOTSTRAP_SITE = https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAP_VERSION)
BOOTSTRAP_SOURCE = bootstrap-$(BOOTSTRAP_VERSION)-dist.zip
BOOTSTRAP_LICENSE = MIT
define BOOTSTRAP_EXTRACT_CMDS
$(UNZIP) $(DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
+ mv $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist/* $(@D)/
+ rmdir $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist
endef
define BOOTSTRAP_INSTALL_TARGET_CMDS
- $(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap-theme.min.css \
+ $(INSTALL) -m 0644 -D $(@D)/css/bootstrap-theme.min.css \
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap-theme.min.css
- $(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap.min.css \
+ $(INSTALL) -m 0644 -D $(@D)/css/bootstrap.min.css \
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css
- $(INSTALL) -m 0644 -D $(@D)/dist/js/bootstrap.min.js \
+ $(INSTALL) -m 0644 -D $(@D)/js/bootstrap.min.js \
$(TARGET_DIR)/var/www/bootstrap/js/bootstrap.min.js
- cp -r $(@D)/dist/fonts $(TARGET_DIR)/var/www/bootstrap/
+ cp -r $(@D)/fonts $(TARGET_DIR)/var/www/bootstrap/
endef
$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [Bug 9876] aarch64 support with gcc 4.8 toolchain
From: Yann E. MORIN @ 2017-05-25 13:32 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-9876-163-wRsUeogIPH@https.bugs.busybox.net/>
On 2017-05-25 13:21 +0000, bugzilla at busybox.net spake thusly:
> https://bugs.busybox.net/show_bug.cgi?id=9876
>
> Yann E. MORIN <yann.morin.1998@free.fr> changed:
>
> What |Removed |Added
> ----------------------------------------------------------------------------
> CC| |yann.morin.1998 at free.fr
>
> --- Comment #4 from Yann E. MORIN <yann.morin.1998@free.fr> ---
> We don't try to prevent the user from using an unsupported gcc version
> depending on the selected architecture, and I don't think we want to go down
> this route.
>
> So I don't think we'll try to solve this problem.
Woops... It seems I was not fast enough to cancel my reply after I
accidentally hit "apply changes" in the tracker. Sorry...
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] gcc: arc: Fix tst_movb pattern
From: Thomas Petazzoni @ 2017-05-25 13:27 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170524153919.44524-1-abrodkin@synopsys.com>
Hello,
On Wed, 24 May 2017 18:39:19 +0300, Alexey Brodkin wrote:
> Fixes building of quagga [1]:
> ------------------------------>8---------------------------
> 839:1: error: unrecognizable insn:
> }
> ^
> (insn 183 24 26 4 (set (reg:CC_ZN 61 cc)
> (and:SI (reg:SI 0 r0 [orig:192 _12->id.s_addr ] [192])
> (const_int -256 [0xffffffffffffff00]))) ospf_ri.c:790 -1
> (nil))
> ospf_ri.c:839:1: internal compiler error: in extract_insn, at recog.c:2287
> ------------------------------>8---------------------------
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH] toolchain: Bump ARC tools to arc-2017.03 release
From: Thomas Petazzoni @ 2017-05-25 13:27 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170523184137.48708-1-abrodkin@synopsys.com>
Hello,
On Tue, 23 May 2017 21:41:37 +0300, Alexey Brodkin wrote:
> This commit finally bumps ARC toolchain to arc-2017.03 release.
> More info on this release could be found here:
> https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/tag/arc-2017.03
>
> Note mentioned above web-page is not yet populated but should be very soon.
> As a safe fall-back interested could refer to RC2 page here:
> https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/tag/arc-2017.03-rc2
>
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
> package/binutils/Config.in.host | 2 +-
> .../0300-PATCH-ld-makefile.patch | 0
> .../0301-PATCH-check-ldrunpath-length.patch | 0
> .../0500-add-sysroot-fix-from-bug-3049.patch | 0
> .../0600-poison-system-directories.patch | 0
> package/binutils/binutils.hash | 2 +-
> package/binutils/binutils.mk | 2 +-
> package/gcc/Config.in.host | 2 +-
> ...-return-false-for-any-PIC-related-unspecs.patch | 58 ----------------------
> .../301-missing-execinfo_h.patch | 0
> .../860-cilk-wchar.patch | 0
> .../940-uclinux-enable-threads.patch | 0
> package/gcc/gcc.hash | 2 +-
> package/gdb/Config.in.host | 2 +-
> package/gdb/gdb.hash | 2 +-
> 15 files changed, 7 insertions(+), 65 deletions(-)
> rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0300-PATCH-ld-makefile.patch (100%)
> rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0301-PATCH-check-ldrunpath-length.patch (100%)
> rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0500-add-sysroot-fix-from-bug-3049.patch (100%)
> rename package/binutils/{arc-2017.03-rc2 => arc-2017.03}/0600-poison-system-directories.patch (100%)
> delete mode 100644 package/gcc/arc-2017.03-rc2/0001-FIX-PIC-return-false-for-any-PIC-related-unspecs.patch
> rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/301-missing-execinfo_h.patch (100%)
> rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/860-cilk-wchar.patch (100%)
> rename package/gcc/{arc-2017.03-rc2 => arc-2017.03}/940-uclinux-enable-threads.patch (100%)
It's normally way too late for version bumps, but since this is a bump
from a -rc2 version to the final version, and limited to ARC stuff,
I've applied it to master. I really hope it won't cause new build
failures!
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] gcc: arc: add patch to fix tst_movb pattern
From: Thomas Petazzoni @ 2017-05-25 13:25 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=a71fb422bae5141d8605650e5ce12b2b244ed8fb
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes building of quagga [1]:
------------------------------>8---------------------------
839:1: error: unrecognizable insn:
}
^
(insn 183 24 26 4 (set (reg:CC_ZN 61 cc)
(and:SI (reg:SI 0 r0 [orig:192 _12->id.s_addr ] [192])
(const_int -256 [0xffffffffffffff00]))) ospf_ri.c:790 -1
(nil))
ospf_ri.c:839:1: internal compiler error: in extract_insn, at recog.c:2287
------------------------------>8---------------------------
[1] http://autobuild.buildroot.net/results/3c1/3c12c4609d4a77ab8ccd3ea94840884d70520efai
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
.../0001-ARC-Fix-tst_movb-pattern.patch | 55 ++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/package/gcc/arc-2017.03/0001-ARC-Fix-tst_movb-pattern.patch b/package/gcc/arc-2017.03/0001-ARC-Fix-tst_movb-pattern.patch
new file mode 100644
index 0000000..3b09a13
--- /dev/null
+++ b/package/gcc/arc-2017.03/0001-ARC-Fix-tst_movb-pattern.patch
@@ -0,0 +1,55 @@
+From 08235ef444fd32d311fc9edb65895133820462e3 Mon Sep 17 00:00:00 2001
+From: claziss <claziss@synopsys.com>
+Date: Wed, 24 May 2017 12:53:43 +0200
+Subject: [PATCH] [ARC] Fix tst_movb pattern.
+
+The tst_movb pattern is missing guarding when spitting.
+
+gcc/
+2017-05-24 Claudiu Zissulescu <claziss@synopsys.com>
+
+ * config/arc/arc.md (tst_movb): Add guard when splitting.
+
+testsuite/
+2017-05-24 Claudiu Zissulescu <claziss@synopsys.com>
+
+ * gcc.target/arc/pr9001195952.c: New test.
+---
+ gcc/config/arc/arc.md | 2 +-
+ gcc/testsuite/gcc.target/arc/pr9001195952.c | 11 +++++++++++
+ 2 files changed, 12 insertions(+), 1 deletion(-)
+ create mode 100755 gcc/testsuite/gcc.target/arc/pr9001195952.c
+
+diff --git a/gcc/config/arc/arc.md b/gcc/config/arc/arc.md
+index e78abaaafc42..d5510aeb0600 100644
+--- a/gcc/config/arc/arc.md
++++ b/gcc/config/arc/arc.md
+@@ -863,7 +863,7 @@ archs4xd, archs4xd_slow"
+ (clobber (match_scratch:SI 3 "=X,X,X,X,X,X,Rrq,Rrq,c"))]
+ "TARGET_NPS_BITOPS"
+ "movb.f.cl %3,%1,%p2,%p2,%s2"
+- "reload_completed
++ "TARGET_NPS_BITOPS && reload_completed
+ && (extract_constrain_insn_cached (insn), (which_alternative & ~1) != 6)"
+ [(set (match_dup 0) (match_dup 4))])
+
+diff --git a/gcc/testsuite/gcc.target/arc/pr9001195952.c b/gcc/testsuite/gcc.target/arc/pr9001195952.c
+new file mode 100755
+index 000000000000..252438d8d78b
+--- /dev/null
++++ b/gcc/testsuite/gcc.target/arc/pr9001195952.c
+@@ -0,0 +1,11 @@
++/* { dg-do compile } */
++/* { dg-skip-if "" { ! { clmcpu } } } */
++/* { dg-options "-mcpu=archs -Os -w -fpic" } */
++
++/* tst_movb split pattern is wrong for anything else than NPS
++ chip. */
++__bswap_32___bsx() {
++ int a = __builtin_bswap32(__bswap_32___bsx);
++ if (a & 1048575)
++ zlog_warn();
++}
+--
+2.7.4
+
^ permalink raw reply related
* [Buildroot] [Bug 9876] aarch64 support with gcc 4.8 toolchain
From: bugzilla at busybox.net @ 2017-05-25 13:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-9876-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=9876
--- Comment #5 from Yann E. MORIN <yann.morin.1998@free.fr> ---
> We don't try to prevent the user from using an unsupported gcc version
> depending on the selected architecture, and I don't think we want to go
> down this route.
> So I don't think we'll try to solve this problem.
Agreed.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox