All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next v1] package/bcm2835: bump version to 1.62
@ 2020-03-02 10:40 Peter Seiderer
  2020-03-05 22:40 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Seiderer @ 2020-03-02 10:40 UTC (permalink / raw)
  To: buildroot

Changelog (since 1.60):
  - 1.61 2020-01-11 Fixed errors in the documentation for bcm2835_spi_write.
    Fixes issue seen on Raspberry Pi 4 boards where 64-bit off_t is used by
    default via -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64. The offset was
    being incorrectly converted, this way is clearer and fixes the problem.
    Contributed by Jonathan Perkin.
  - 1.62 2020-01-12 Fixed a problem that could cause compile failures with
    size_t and off_t

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/bcm2835/bcm2835.hash | 4 ++--
 package/bcm2835/bcm2835.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/bcm2835/bcm2835.hash b/package/bcm2835/bcm2835.hash
index 3926d63bb0..025ef8be40 100644
--- a/package/bcm2835/bcm2835.hash
+++ b/package/bcm2835/bcm2835.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256 333e7ceee895e910c29098074773ee86bcab4a82c2af0cf083c4533767e52d27 bcm2835-1.60.tar.gz
-sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
+sha256  7beacda787d6073d0982bfe576c318bb2730700f7d0f7950c6e763dfcb06e0e5  bcm2835-1.62.tar.gz
+sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
diff --git a/package/bcm2835/bcm2835.mk b/package/bcm2835/bcm2835.mk
index 82238ee528..2435a42c95 100644
--- a/package/bcm2835/bcm2835.mk
+++ b/package/bcm2835/bcm2835.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-BCM2835_VERSION = 1.60
+BCM2835_VERSION = 1.62
 BCM2835_SITE = http://www.airspayce.com/mikem/bcm2835
 BCM2835_LICENSE = GPL-2.0
 BCM2835_LICENSE_FILES = COPYING
-- 
2.25.1

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

* [Buildroot] [PATCH/next v1] package/bcm2835: bump version to 1.62
  2020-03-02 10:40 [Buildroot] [PATCH/next v1] package/bcm2835: bump version to 1.62 Peter Seiderer
@ 2020-03-05 22:40 ` Thomas Petazzoni
  2020-03-15 10:29   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2020-03-05 22:40 UTC (permalink / raw)
  To: buildroot

On Mon,  2 Mar 2020 11:40:47 +0100
Peter Seiderer <ps.report@gmx.net> wrote:

> Changelog (since 1.60):
>   - 1.61 2020-01-11 Fixed errors in the documentation for bcm2835_spi_write.
>     Fixes issue seen on Raspberry Pi 4 boards where 64-bit off_t is used by
>     default via -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64. The offset was
>     being incorrectly converted, this way is clearer and fixes the problem.
>     Contributed by Jonathan Perkin.
>   - 1.62 2020-01-12 Fixed a problem that could cause compile failures with
>     size_t and off_t
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/bcm2835/bcm2835.hash | 4 ++--
>  package/bcm2835/bcm2835.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Since the number of changes is really small, and limited to bug fixes,
I've applied to master.

Thanks!

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

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

* [Buildroot] [PATCH/next v1] package/bcm2835: bump version to 1.62
  2020-03-05 22:40 ` Thomas Petazzoni
@ 2020-03-15 10:29   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-03-15 10:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > On Mon,  2 Mar 2020 11:40:47 +0100
 > Peter Seiderer <ps.report@gmx.net> wrote:

 >> Changelog (since 1.60):
 >> - 1.61 2020-01-11 Fixed errors in the documentation for bcm2835_spi_write.
 >> Fixes issue seen on Raspberry Pi 4 boards where 64-bit off_t is used by
 >> default via -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64. The offset was
 >> being incorrectly converted, this way is clearer and fixes the problem.
 >> Contributed by Jonathan Perkin.
 >> - 1.62 2020-01-12 Fixed a problem that could cause compile failures with
 >> size_t and off_t
 >> 
 >> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
 >> ---
 >> package/bcm2835/bcm2835.hash | 4 ++--
 >> package/bcm2835/bcm2835.mk   | 2 +-
 >> 2 files changed, 3 insertions(+), 3 deletions(-)

 > Since the number of changes is really small, and limited to bug fixes,
 > I've applied to master.

Committed to 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-03-15 10:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-02 10:40 [Buildroot] [PATCH/next v1] package/bcm2835: bump version to 1.62 Peter Seiderer
2020-03-05 22:40 ` Thomas Petazzoni
2020-03-15 10:29   ` 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.