* [ptxdist] [PATCH] libpwm: version bump 1.0-rc1 -> 1.0-rc2
@ 2025-07-29 17:27 Uwe Kleine-König
2025-08-01 9:36 ` Michael Olbrich
2025-08-05 4:59 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 2 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2025-07-29 17:27 UTC (permalink / raw)
To: ptxdist
The rc2 release contains a few minor bug fixes and ships a copy of
<linux/pwm.h> which makes it possible to compile in the character device
support with kernel headers older than 6.17-rc1.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
---
Hello,
libpwm 1.0-rc2 doesn't need kernel headers any more as it contains a
copy of <linux/pwm.h> now. Still if PTXCONF_KERNEL_HEADER=y libpwm
should be built after kernel-header. I don't know how to formalize that.
IMHO that doesn't need to be addressed in the version bump commit but
could also be done in a separate commit.
Best regards
Uwe
rules/libpwm.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/libpwm.make b/rules/libpwm.make
index 4c14e030d6e2..82770805f341 100644
--- a/rules/libpwm.make
+++ b/rules/libpwm.make
@@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBPWM) += libpwm
#
# Paths and names
#
-LIBPWM_VERSION := 1.0-rc1
-LIBPWM_MD5 := bb8032cd03c25a0dcdc76712acda714c
+LIBPWM_VERSION := 1.0-rc2
+LIBPWM_MD5 := ccf05e263bd26418311e0e93848b3a71
LIBPWM := libpwm-$(LIBPWM_VERSION)
LIBPWM_SUFFIX := tar.xz
-LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-1.0-rc1.tar.xz
+LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-$(LIBPWM_VERSION).tar.xz
LIBPWM_SOURCE := $(SRCDIR)/$(LIBPWM).$(LIBPWM_SUFFIX)
LIBPWM_DIR := $(BUILDDIR)/$(LIBPWM)
LIBPWM_BUILD_OOT := YES
base-commit: c9de78371f3db2737a547584085a0376e73f76b0
--
2.50.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH] libpwm: version bump 1.0-rc1 -> 1.0-rc2
2025-07-29 17:27 [ptxdist] [PATCH] libpwm: version bump 1.0-rc1 -> 1.0-rc2 Uwe Kleine-König
@ 2025-08-01 9:36 ` Michael Olbrich
2025-08-05 4:59 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2025-08-01 9:36 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: ptxdist
On Tue, Jul 29, 2025 at 07:27:58PM +0200, Uwe Kleine-König wrote:
> The rc2 release contains a few minor bug fixes and ships a copy of
> <linux/pwm.h> which makes it possible to compile in the character device
> support with kernel headers older than 6.17-rc1.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> ---
> Hello,
>
> libpwm 1.0-rc2 doesn't need kernel headers any more as it contains a
> copy of <linux/pwm.h> now. Still if PTXCONF_KERNEL_HEADER=y libpwm
> should be built after kernel-header. I don't know how to formalize that.
Drop the 'select' and make the CPPFLAGS conditional, like e.g.
rules/liburing.make.
The kernel headers are always built before other target packages.
Michael
> IMHO that doesn't need to be addressed in the version bump commit but
> could also be done in a separate commit.
>
> Best regards
> Uwe
>
> rules/libpwm.make | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/rules/libpwm.make b/rules/libpwm.make
> index 4c14e030d6e2..82770805f341 100644
> --- a/rules/libpwm.make
> +++ b/rules/libpwm.make
> @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBPWM) += libpwm
> #
> # Paths and names
> #
> -LIBPWM_VERSION := 1.0-rc1
> -LIBPWM_MD5 := bb8032cd03c25a0dcdc76712acda714c
> +LIBPWM_VERSION := 1.0-rc2
> +LIBPWM_MD5 := ccf05e263bd26418311e0e93848b3a71
> LIBPWM := libpwm-$(LIBPWM_VERSION)
> LIBPWM_SUFFIX := tar.xz
> -LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-1.0-rc1.tar.xz
> +LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-$(LIBPWM_VERSION).tar.xz
> LIBPWM_SOURCE := $(SRCDIR)/$(LIBPWM).$(LIBPWM_SUFFIX)
> LIBPWM_DIR := $(BUILDDIR)/$(LIBPWM)
> LIBPWM_BUILD_OOT := YES
>
> base-commit: c9de78371f3db2737a547584085a0376e73f76b0
> --
> 2.50.0
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [APPLIED] libpwm: version bump 1.0-rc1 -> 1.0-rc2
2025-07-29 17:27 [ptxdist] [PATCH] libpwm: version bump 1.0-rc1 -> 1.0-rc2 Uwe Kleine-König
2025-08-01 9:36 ` Michael Olbrich
@ 2025-08-05 4:59 ` Michael Olbrich
2025-08-05 6:09 ` Uwe Kleine-König
1 sibling, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2025-08-05 4:59 UTC (permalink / raw)
To: ptxdist; +Cc: Uwe Kleine-König
Thanks, applied as dee8d80ab1e9d272f94348fe3aaffdf57163c6c7.
Michael
[sent from post-receive hook]
On Tue, 05 Aug 2025 06:59:47 +0200, Uwe Kleine-König <u.kleine-koenig@baylibre.com> wrote:
> The rc2 release contains a few minor bug fixes and ships a copy of
> <linux/pwm.h> which makes it possible to compile in the character device
> support with kernel headers older than 6.17-rc1.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> Message-Id: <20250729172757.164306-2-u.kleine-koenig@baylibre.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libpwm.make b/rules/libpwm.make
> index 4c14e030d6e2..82770805f341 100644
> --- a/rules/libpwm.make
> +++ b/rules/libpwm.make
> @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBPWM) += libpwm
> #
> # Paths and names
> #
> -LIBPWM_VERSION := 1.0-rc1
> -LIBPWM_MD5 := bb8032cd03c25a0dcdc76712acda714c
> +LIBPWM_VERSION := 1.0-rc2
> +LIBPWM_MD5 := ccf05e263bd26418311e0e93848b3a71
> LIBPWM := libpwm-$(LIBPWM_VERSION)
> LIBPWM_SUFFIX := tar.xz
> -LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-1.0-rc1.tar.xz
> +LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-$(LIBPWM_VERSION).tar.xz
> LIBPWM_SOURCE := $(SRCDIR)/$(LIBPWM).$(LIBPWM_SUFFIX)
> LIBPWM_DIR := $(BUILDDIR)/$(LIBPWM)
> LIBPWM_BUILD_OOT := YES
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [APPLIED] libpwm: version bump 1.0-rc1 -> 1.0-rc2
2025-08-05 4:59 ` [ptxdist] [APPLIED] " Michael Olbrich
@ 2025-08-05 6:09 ` Uwe Kleine-König
2025-08-05 6:33 ` Michael Olbrich
0 siblings, 1 reply; 6+ messages in thread
From: Uwe Kleine-König @ 2025-08-05 6:09 UTC (permalink / raw)
To: Michael Olbrich; +Cc: ptxdist
[-- Attachment #1: Type: text/plain, Size: 1813 bytes --]
Hello Michael,
On Tue, Aug 05, 2025 at 06:59:47AM +0200, Michael Olbrich wrote:
> Thanks, applied as dee8d80ab1e9d272f94348fe3aaffdf57163c6c7.
>
> Michael
>
> [sent from post-receive hook]
>
> On Tue, 05 Aug 2025 06:59:47 +0200, Uwe Kleine-König <u.kleine-koenig@baylibre.com> wrote:
> > The rc2 release contains a few minor bug fixes and ships a copy of
> > <linux/pwm.h> which makes it possible to compile in the character device
> > support with kernel headers older than 6.17-rc1.
> >
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> > Message-Id: <20250729172757.164306-2-u.kleine-koenig@baylibre.com>
> > Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> >
> > diff --git a/rules/libpwm.make b/rules/libpwm.make
> > index 4c14e030d6e2..82770805f341 100644
> > --- a/rules/libpwm.make
> > +++ b/rules/libpwm.make
> > @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBPWM) += libpwm
> > #
> > # Paths and names
> > #
> > -LIBPWM_VERSION := 1.0-rc1
> > -LIBPWM_MD5 := bb8032cd03c25a0dcdc76712acda714c
> > +LIBPWM_VERSION := 1.0-rc2
> > +LIBPWM_MD5 := ccf05e263bd26418311e0e93848b3a71
> > LIBPWM := libpwm-$(LIBPWM_VERSION)
> > LIBPWM_SUFFIX := tar.xz
> > -LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-1.0-rc1.tar.xz
> > +LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-$(LIBPWM_VERSION).tar.xz
> > LIBPWM_SOURCE := $(SRCDIR)/$(LIBPWM).$(LIBPWM_SUFFIX)
> > LIBPWM_DIR := $(BUILDDIR)/$(LIBPWM)
> > LIBPWM_BUILD_OOT := YES
Hmm, it seems you didn't like my v2[1], but I thought you didn't like my
v1 either ... 🤔
Best regards
Uwe
[1] https://lore.ptxdist.org/ptxdist/20250801104042.177835-2-u.kleine-koenig@baylibre.com/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [APPLIED] libpwm: version bump 1.0-rc1 -> 1.0-rc2
2025-08-05 6:09 ` Uwe Kleine-König
@ 2025-08-05 6:33 ` Michael Olbrich
2025-08-05 14:12 ` Uwe Kleine-König
0 siblings, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2025-08-05 6:33 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: ptxdist
On Tue, Aug 05, 2025 at 08:09:05AM +0200, Uwe Kleine-König wrote:
> Hello Michael,
>
> On Tue, Aug 05, 2025 at 06:59:47AM +0200, Michael Olbrich wrote:
> > Thanks, applied as dee8d80ab1e9d272f94348fe3aaffdf57163c6c7.
> >
> > Michael
> >
> > [sent from post-receive hook]
> >
> > On Tue, 05 Aug 2025 06:59:47 +0200, Uwe Kleine-König <u.kleine-koenig@baylibre.com> wrote:
> > > The rc2 release contains a few minor bug fixes and ships a copy of
> > > <linux/pwm.h> which makes it possible to compile in the character device
> > > support with kernel headers older than 6.17-rc1.
> > >
> > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> > > Message-Id: <20250729172757.164306-2-u.kleine-koenig@baylibre.com>
> > > Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> > >
> > > diff --git a/rules/libpwm.make b/rules/libpwm.make
> > > index 4c14e030d6e2..82770805f341 100644
> > > --- a/rules/libpwm.make
> > > +++ b/rules/libpwm.make
> > > @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBPWM) += libpwm
> > > #
> > > # Paths and names
> > > #
> > > -LIBPWM_VERSION := 1.0-rc1
> > > -LIBPWM_MD5 := bb8032cd03c25a0dcdc76712acda714c
> > > +LIBPWM_VERSION := 1.0-rc2
> > > +LIBPWM_MD5 := ccf05e263bd26418311e0e93848b3a71
> > > LIBPWM := libpwm-$(LIBPWM_VERSION)
> > > LIBPWM_SUFFIX := tar.xz
> > > -LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-1.0-rc1.tar.xz
> > > +LIBPWM_URL := https://mirrors.edge.kernel.org/pub/linux/kernel/people/ukleinek/libpwm/libpwm-$(LIBPWM_VERSION).tar.xz
> > > LIBPWM_SOURCE := $(SRCDIR)/$(LIBPWM).$(LIBPWM_SUFFIX)
> > > LIBPWM_DIR := $(BUILDDIR)/$(LIBPWM)
> > > LIBPWM_BUILD_OOT := YES
>
> Hmm, it seems you didn't like my v2[1], but I thought you didn't like my
> v1 either ... 🤔
Sorry about that. Looks like I queued v1 just before you sent v2 (otherwise
b4 would have picked up v2 instead). And I forgot about my own comments...
And I didn't see the new version before now.
I've queued v2 as well now (which is just the kernel header stuff) with a
modified commit message. Should hit master soon.
Michael
> Best regards
> Uwe
>
> [1] https://lore.ptxdist.org/ptxdist/20250801104042.177835-2-u.kleine-koenig@baylibre.com/
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [APPLIED] libpwm: version bump 1.0-rc1 -> 1.0-rc2
2025-08-05 6:33 ` Michael Olbrich
@ 2025-08-05 14:12 ` Uwe Kleine-König
0 siblings, 0 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2025-08-05 14:12 UTC (permalink / raw)
To: ptxdist
[-- Attachment #1: Type: text/plain, Size: 756 bytes --]
Hello Michael,
On Tue, Aug 05, 2025 at 08:33:29AM +0200, Michael Olbrich wrote:
> On Tue, Aug 05, 2025 at 08:09:05AM +0200, Uwe Kleine-König wrote:
> > Hmm, it seems you didn't like my v2[1], but I thought you didn't like my
> > v1 either ... 🤔
>
> Sorry about that. Looks like I queued v1 just before you sent v2 (otherwise
> b4 would have picked up v2 instead). And I forgot about my own comments...
> And I didn't see the new version before now.
>
> I've queued v2 as well now (which is just the kernel header stuff) with a
> modified commit message. Should hit master soon.
Thanks for your effort involved in correcting that (additional to the
thanks to maintain ptxdist of course; I still like to use it).
Best regards
Uwe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-08-05 14:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-29 17:27 [ptxdist] [PATCH] libpwm: version bump 1.0-rc1 -> 1.0-rc2 Uwe Kleine-König
2025-08-01 9:36 ` Michael Olbrich
2025-08-05 4:59 ` [ptxdist] [APPLIED] " Michael Olbrich
2025-08-05 6:09 ` Uwe Kleine-König
2025-08-05 6:33 ` Michael Olbrich
2025-08-05 14:12 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox