* [libgpiod][PATCH v2 1/2] README: add info about the github page
@ 2024-01-15 11:19 Bartosz Golaszewski
2024-01-15 11:19 ` [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2 Bartosz Golaszewski
2024-01-16 9:18 ` [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
0 siblings, 2 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2024-01-15 11:19 UTC (permalink / raw)
To: Linus Walleij, Kent Gibson, Phil Howard, Erik Schilling
Cc: linux-gpio, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
The github page over at https://github.com/brgl/libgpiod has been reopened
for bug reports and discussions. Add a link and a mention to the README
file.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Erik Schilling <erik.schilling@linaro.org>
---
Resending with [libgpiod] tag
v1 -> v2:
- add a link to the kernel.org mirror containing release tarballs
README | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/README b/README
index 69128dc..632aab3 100644
--- a/README
+++ b/README
@@ -294,9 +294,16 @@ Those also provide examples of the expected formatting.
Allow some time for your e-mail to propagate to the list before retrying,
particularly if there are no e-mails in the list more recent than yours.
+There is a libgpiod github page[7] available for reporting bugs and general
+discussions and although PRs can be submitted and discussed, upstreambound
+patches need to go through the mailing list nevertheless while release
+tarballs should be fetched from kernel.org[8].
+
[1] https://github.com/kward/shunit2
[2] http://vger.kernel.org/vger-lists.html#linux-gpio
[3] https://docs.kernel.org/process/email-clients.html
[4] https://docs.kernel.org/process/coding-style.html
[5] https://docs.kernel.org/process/submitting-patches.html
[6] https://lore.kernel.org/linux-gpio/
+[7] https://github.com/brgl/libgpiod
+[8] https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2
2024-01-15 11:19 [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
@ 2024-01-15 11:19 ` Bartosz Golaszewski
2024-01-15 11:30 ` Kent Gibson
2024-01-16 9:18 ` [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
1 sibling, 1 reply; 4+ messages in thread
From: Bartosz Golaszewski @ 2024-01-15 11:19 UTC (permalink / raw)
To: Linus Walleij, Kent Gibson, Phil Howard, Erik Schilling
Cc: linux-gpio, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Major version 2 of libgpiod requires linux kernel uAPI v2 to be available.
This was released in linux v5.10 so mention it in the README.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
README | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/README b/README
index 632aab3..7680915 100644
--- a/README
+++ b/README
@@ -8,8 +8,10 @@ libgpiod
character device (gpiod stands for GPIO device)
Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use
-the character device instead. This library encapsulates the ioctl calls and
-data structures behind a straightforward API.
+the character device instead. Version 2 of libgpiod requires the new GPIO
+character device uAPI to be available which was first released in linux v5.10.
+This library encapsulates the ioctl calls and data structures behind a
+straightforward API.
RATIONALE
---------
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2
2024-01-15 11:19 ` [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2 Bartosz Golaszewski
@ 2024-01-15 11:30 ` Kent Gibson
0 siblings, 0 replies; 4+ messages in thread
From: Kent Gibson @ 2024-01-15 11:30 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Linus Walleij, Phil Howard, Erik Schilling, linux-gpio,
Bartosz Golaszewski
On Mon, Jan 15, 2024 at 12:19:29PM +0100, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> Major version 2 of libgpiod requires linux kernel uAPI v2 to be available.
> This was released in linux v5.10 so mention it in the README.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
> README | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/README b/README
> index 632aab3..7680915 100644
> --- a/README
> +++ b/README
> @@ -8,8 +8,10 @@ libgpiod
> character device (gpiod stands for GPIO device)
>
> Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use
> -the character device instead. This library encapsulates the ioctl calls and
> -data structures behind a straightforward API.
> +the character device instead. Version 2 of libgpiod requires the new GPIO
> +character device uAPI to be available which was first released in linux v5.10.
> +This library encapsulates the ioctl calls and data structures behind a
> +straightforward API.
This wording is a bit awkward. How about:
Version 2 of libgpiod requires GPIO character device uAPI v2 which was
first released in linux v5.10.
I prefer the "v2" over "new". I would settle for "latest".
The "to be available" feels a bit redundant.
I also tend to drop the "v" from Linux release versions, and capitalise
Linux. So I would use Linux 5.10. Is there a preference?
Patch 1 looks good to me.
Cheers,
Kent.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [libgpiod][PATCH v2 1/2] README: add info about the github page
2024-01-15 11:19 [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
2024-01-15 11:19 ` [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2 Bartosz Golaszewski
@ 2024-01-16 9:18 ` Bartosz Golaszewski
1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2024-01-16 9:18 UTC (permalink / raw)
To: Linus Walleij, Kent Gibson, Phil Howard, Erik Schilling
Cc: linux-gpio, Bartosz Golaszewski
On Mon, Jan 15, 2024 at 12:19 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> The github page over at https://github.com/brgl/libgpiod has been reopened
> for bug reports and discussions. Add a link and a mention to the README
> file.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> Reviewed-by: Erik Schilling <erik.schilling@linaro.org>
> ---
Applied.
Bart
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-16 9:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-15 11:19 [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
2024-01-15 11:19 ` [libgpiod][PATCH 2/2] README: mention the linux v5.10 requirement for libgpiod v2 Bartosz Golaszewski
2024-01-15 11:30 ` Kent Gibson
2024-01-16 9:18 ` [libgpiod][PATCH v2 1/2] README: add info about the github page Bartosz Golaszewski
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.