All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0
@ 2019-08-14 17:55 Fabrice Fontaine
  2019-08-14 17:55 ` [Buildroot] [PATCH 2/4] package/dahdi-tools: " Fabrice Fontaine
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Fabrice Fontaine @ 2019-08-14 17:55 UTC (permalink / raw)
  To: buildroot

Fix build with kernel >= 4.13 thanks to
https://github.com/asterisk/dahdi-linux/commit/d4e232a776ee27eb04aed3cbd72a203118dbe9f1

Fixes:
 - https://bugs.buildroot.org/show_bug.cgi?id=11921

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/dahdi-linux/dahdi-linux.hash | 4 ++--
 package/dahdi-linux/dahdi-linux.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/dahdi-linux/dahdi-linux.hash b/package/dahdi-linux/dahdi-linux.hash
index c362f8ea3f..1847a4da4c 100644
--- a/package/dahdi-linux/dahdi-linux.hash
+++ b/package/dahdi-linux/dahdi-linux.hash
@@ -1,7 +1,7 @@
 # sha1 from: http://downloads.asterisk.org/pub/telephony/dahdi-linux/releases
 # sha256 locally computed
-sha1    8cbd55b8611c6ed80bcdf84d537566b4934f3def  dahdi-linux-2.11.1.tar.gz
-sha256  f59f382365118205e77d2874f1c0e1546e936247bcc45f07a43bc21778bee9df  dahdi-linux-2.11.1.tar.gz
+sha1    9827f0afc625e293021b81daf94ec054145c975b  dahdi-linux-3.0.0.tar.gz
+sha256  02a8a680d20a3e243f37259edc3554ab9a488595a28562c45c33da3792d12caa  dahdi-linux-3.0.0.tar.gz
 
 # Firmware files have no upstream hash, so sha56 locally computed
 sha256  3ff26cf80555fd7470b43a87c51d03c1db2a75abcd4561d79f69b6c48298e4a1  dahdi-fwload-vpmadt032-1.25.0.tar.gz
diff --git a/package/dahdi-linux/dahdi-linux.mk b/package/dahdi-linux/dahdi-linux.mk
index 6ac1e88943..4d2c7e7177 100644
--- a/package/dahdi-linux/dahdi-linux.mk
+++ b/package/dahdi-linux/dahdi-linux.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DAHDI_LINUX_VERSION = 2.11.1
+DAHDI_LINUX_VERSION = 3.0.0
 DAHDI_LINUX_SITE = http://downloads.asterisk.org/pub/telephony/dahdi-linux/releases
 
 # We need to download all thoe firmware blobs ourselves, otherwise
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 2/4] package/dahdi-tools: bump to version 3.0.0
  2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
@ 2019-08-14 17:55 ` Fabrice Fontaine
  2019-09-02 15:13   ` Peter Korsgaard
  2019-08-14 17:55 ` [Buildroot] [PATCH 3/4] package/libpri: add -fPIC Fabrice Fontaine
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2019-08-14 17:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/dahdi-tools/dahdi-tools.hash | 4 ++--
 package/dahdi-tools/dahdi-tools.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/dahdi-tools/dahdi-tools.hash b/package/dahdi-tools/dahdi-tools.hash
index 7b668c6049..5538ed6b8a 100644
--- a/package/dahdi-tools/dahdi-tools.hash
+++ b/package/dahdi-tools/dahdi-tools.hash
@@ -1,7 +1,7 @@
 # sha1 from http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases
 # sha256 locally computed
-sha1    5da944e6d59a977f814230253f3ddf2847e7f31b                          dahdi-tools-2.11.1.tar.gz
-sha256  53ffeb333f3e44b0c88e5b17475cdbf87d3f652eb81a6422de76250c061e2909  dahdi-tools-2.11.1.tar.gz
+sha1    3e988256aae4b6a6ed8efb3ecc07753779f54823                          dahdi-tools-3.0.0.tar.gz
+sha256  5bebb20d5ae13fa13f0e2075603013954b962be477db02271eef44b3e41557c5  dahdi-tools-3.0.0.tar.gz
 
 # License files, locally computed
 sha256  fa5fc1d1eec39532ea517518eeefd7b6e3c14341a55e5880a0e2a49eee47a5b7  LICENSE
diff --git a/package/dahdi-tools/dahdi-tools.mk b/package/dahdi-tools/dahdi-tools.mk
index e97d944c52..392dc09140 100644
--- a/package/dahdi-tools/dahdi-tools.mk
+++ b/package/dahdi-tools/dahdi-tools.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DAHDI_TOOLS_VERSION = 2.11.1
+DAHDI_TOOLS_VERSION = 3.0.0
 DAHDI_TOOLS_SITE = http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases
 
 DAHDI_TOOLS_LICENSE = GPLv2, LGPLv2.1
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 3/4] package/libpri: add -fPIC
  2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
  2019-08-14 17:55 ` [Buildroot] [PATCH 2/4] package/dahdi-tools: " Fabrice Fontaine
@ 2019-08-14 17:55 ` Fabrice Fontaine
  2019-09-02 15:14   ` Peter Korsgaard
  2019-08-14 17:55 ` [Buildroot] [PATCH 4/4] package/libss7: " Fabrice Fontaine
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2019-08-14 17:55 UTC (permalink / raw)
  To: buildroot

Fixes:
 - https://bugs.buildroot.org/show_bug.cgi?id=11961

[Retrieved (and updated to keep line under 80 characters) from:
https://bugs.buildroot.org/show_bug.cgi?id=11961]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libpri/libpri.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/libpri/libpri.mk b/package/libpri/libpri.mk
index 2e2d0e8a6c..e1fa2abcf5 100644
--- a/package/libpri/libpri.mk
+++ b/package/libpri/libpri.mk
@@ -33,7 +33,8 @@ endif
 LIBPRI_UTILS = pridump pritest rosetest testprilib
 
 define LIBPRI_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+	$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) \
+		CFLAGS="$(TARGET_CFLAGS) -fPIC" -C $(@D) \
 		$(LIBPRI_LIBS) $(LIBPRI_UTILS)
 endef
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 4/4] package/libss7: add -fPIC
  2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
  2019-08-14 17:55 ` [Buildroot] [PATCH 2/4] package/dahdi-tools: " Fabrice Fontaine
  2019-08-14 17:55 ` [Buildroot] [PATCH 3/4] package/libpri: add -fPIC Fabrice Fontaine
@ 2019-08-14 17:55 ` Fabrice Fontaine
  2019-09-02 15:14   ` Peter Korsgaard
  2019-08-17 21:59 ` [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Thomas Petazzoni
  2019-09-02 15:13 ` Peter Korsgaard
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2019-08-14 17:55 UTC (permalink / raw)
  To: buildroot

Fixes:
 - No autobuilder failures

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libss7/libss7.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/libss7/libss7.mk b/package/libss7/libss7.mk
index 541505b264..151b6a61b5 100644
--- a/package/libss7/libss7.mk
+++ b/package/libss7/libss7.mk
@@ -36,7 +36,8 @@ endif
 LIBSS7_UTILS = parser_debug ss7test ss7linktest
 
 define LIBSS7_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
+		CFLAGS="$(TARGET_CFLAGS) -fPIC" -C $(@D) \
 		$(LIBSS7_LIBS) $(LIBSS7_UTILS)
 endef
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0
  2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2019-08-14 17:55 ` [Buildroot] [PATCH 4/4] package/libss7: " Fabrice Fontaine
@ 2019-08-17 21:59 ` Thomas Petazzoni
  2019-09-02 15:13 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2019-08-17 21:59 UTC (permalink / raw)
  To: buildroot

Hello Fabrice,

On Wed, 14 Aug 2019 19:55:43 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fix build with kernel >= 4.13 thanks to
> https://github.com/asterisk/dahdi-linux/commit/d4e232a776ee27eb04aed3cbd72a203118dbe9f1
> 
> Fixes:
>  - https://bugs.buildroot.org/show_bug.cgi?id=11921
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/dahdi-linux/dahdi-linux.hash | 4 ++--
>  package/dahdi-linux/dahdi-linux.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Series applied to master. I've applied to master because it fixes two
bugs, and will not cause any new autobuilder failures, since none of
these packages are tested by the autobuilders currently.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0
  2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
                   ` (3 preceding siblings ...)
  2019-08-17 21:59 ` [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Thomas Petazzoni
@ 2019-09-02 15:13 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-09-02 15:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fix build with kernel >= 4.13 thanks to
 > https://github.com/asterisk/dahdi-linux/commit/d4e232a776ee27eb04aed3cbd72a203118dbe9f1

 > Fixes:
 >  - https://bugs.buildroot.org/show_bug.cgi?id=11921

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.02.x and 2019.05.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 2/4] package/dahdi-tools: bump to version 3.0.0
  2019-08-14 17:55 ` [Buildroot] [PATCH 2/4] package/dahdi-tools: " Fabrice Fontaine
@ 2019-09-02 15:13   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-09-02 15:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.02.x and 2019.05.x to match dahdi-linux, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 3/4] package/libpri: add -fPIC
  2019-08-14 17:55 ` [Buildroot] [PATCH 3/4] package/libpri: add -fPIC Fabrice Fontaine
@ 2019-09-02 15:14   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-09-02 15:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - https://bugs.buildroot.org/show_bug.cgi?id=11961

 > [Retrieved (and updated to keep line under 80 characters) from:
 > https://bugs.buildroot.org/show_bug.cgi?id=11961]
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.02.x and 2019.05.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 4/4] package/libss7: add -fPIC
  2019-08-14 17:55 ` [Buildroot] [PATCH 4/4] package/libss7: " Fabrice Fontaine
@ 2019-09-02 15:14   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-09-02 15:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - No autobuilder failures

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.02.x and 2019.05.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-09-02 15:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-14 17:55 [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Fabrice Fontaine
2019-08-14 17:55 ` [Buildroot] [PATCH 2/4] package/dahdi-tools: " Fabrice Fontaine
2019-09-02 15:13   ` Peter Korsgaard
2019-08-14 17:55 ` [Buildroot] [PATCH 3/4] package/libpri: add -fPIC Fabrice Fontaine
2019-09-02 15:14   ` Peter Korsgaard
2019-08-14 17:55 ` [Buildroot] [PATCH 4/4] package/libss7: " Fabrice Fontaine
2019-09-02 15:14   ` Peter Korsgaard
2019-08-17 21:59 ` [Buildroot] [PATCH 1/4] package/dahdi-linux: bump to version 3.0.0 Thomas Petazzoni
2019-09-02 15:13 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.