* [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
@ 2024-06-20 13:49 Kieran Bingham
2024-07-22 9:45 ` Kieran Bingham
2024-10-23 18:58 ` Julien Olivain
0 siblings, 2 replies; 6+ messages in thread
From: Kieran Bingham @ 2024-06-20 13:49 UTC (permalink / raw)
To: buildroot; +Cc: Kieran Bingham
Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
pybind11"), merged before libcamera v0.1.0, libcamera has no longer
relied on an external subproject branch of pybind to build the python
bindings.
Provide a new package option to allow enabling the python bindings on
libcamera when python3 is available in the buildroot configuration.
Enabling the python bindings will select and bring in pybind as a
dependency.
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
package/libcamera/Config.in | 7 +++++++
package/libcamera/libcamera.mk | 8 +++++++-
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
index e84b8d342eea..4699e382c760 100644
--- a/package/libcamera/Config.in
+++ b/package/libcamera/Config.in
@@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
if BR2_PACKAGE_LIBCAMERA
+config BR2_PACKAGE_LIBCAMERA_PYTHON
+ bool "python bindings"
+ depends on BR2_PACKAGE_PYTHON3
+ select BR2_PACKAGE_PYTHON_PYBIND
+ help
+ Enable libcamera python bindings
+
config BR2_PACKAGE_LIBCAMERA_V4L2
bool "libcamera v4l2 compatibility layer"
help
diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
index dfcd340b75a0..100934a97d6f 100644
--- a/package/libcamera/libcamera.mk
+++ b/package/libcamera/libcamera.mk
@@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
-Dandroid=disabled \
-Ddocumentation=disabled \
-Dtest=false \
- -Dpycamera=disabled \
-Dwerror=false
LIBCAMERA_INSTALL_STAGING = YES
LIBCAMERA_LICENSE = \
@@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
LIBCAMERA_CXXFLAGS = -faligned-new
endif
+ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
+LIBCAMERA_DEPENDENCIES += python3 python-pybind
+LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
+else
+LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
+endif
+
ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
LIBCAMERA_CONF_OPTS += -Dv4l2=true
else
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
2024-06-20 13:49 [Buildroot] [PATCH v2] package/libcamera: Enable python bindings Kieran Bingham
@ 2024-07-22 9:45 ` Kieran Bingham
2024-07-23 7:06 ` Marcus Folkesson
2024-10-23 18:58 ` Julien Olivain
1 sibling, 1 reply; 6+ messages in thread
From: Kieran Bingham @ 2024-07-22 9:45 UTC (permalink / raw)
To: buildroot; +Cc: Marcus Folkesson
Hi Marcus,
Quoting Kieran Bingham (2024-06-20 14:49:59)
> Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
> pybind11"), merged before libcamera v0.1.0, libcamera has no longer
> relied on an external subproject branch of pybind to build the python
> bindings.
>
> Provide a new package option to allow enabling the python bindings on
> libcamera when python3 is available in the buildroot configuration.
> Enabling the python bindings will select and bring in pybind as a
> dependency.
Sorry for not adding you to Cc on the first send.
Could you review or test this patch for me please?
--
Regards
Kieran
> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> ---
> package/libcamera/Config.in | 7 +++++++
> package/libcamera/libcamera.mk | 8 +++++++-
> 2 files changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
> index e84b8d342eea..4699e382c760 100644
> --- a/package/libcamera/Config.in
> +++ b/package/libcamera/Config.in
> @@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
>
> if BR2_PACKAGE_LIBCAMERA
>
> +config BR2_PACKAGE_LIBCAMERA_PYTHON
> + bool "python bindings"
> + depends on BR2_PACKAGE_PYTHON3
> + select BR2_PACKAGE_PYTHON_PYBIND
> + help
> + Enable libcamera python bindings
> +
> config BR2_PACKAGE_LIBCAMERA_V4L2
> bool "libcamera v4l2 compatibility layer"
> help
> diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
> index dfcd340b75a0..100934a97d6f 100644
> --- a/package/libcamera/libcamera.mk
> +++ b/package/libcamera/libcamera.mk
> @@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
> -Dandroid=disabled \
> -Ddocumentation=disabled \
> -Dtest=false \
> - -Dpycamera=disabled \
> -Dwerror=false
> LIBCAMERA_INSTALL_STAGING = YES
> LIBCAMERA_LICENSE = \
> @@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
> LIBCAMERA_CXXFLAGS = -faligned-new
> endif
>
> +ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
> +LIBCAMERA_DEPENDENCIES += python3 python-pybind
> +LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
> +else
> +LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
> +endif
> +
> ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
> LIBCAMERA_CONF_OPTS += -Dv4l2=true
> else
> --
> 2.34.1
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
2024-07-22 9:45 ` Kieran Bingham
@ 2024-07-23 7:06 ` Marcus Folkesson
2024-10-08 11:33 ` Kieran Bingham
0 siblings, 1 reply; 6+ messages in thread
From: Marcus Folkesson @ 2024-07-23 7:06 UTC (permalink / raw)
To: Kieran Bingham; +Cc: buildroot
[-- Attachment #1.1: Type: text/plain, Size: 2816 bytes --]
Hi Kieran,
On Mon, Jul 22, 2024 at 10:45:56AM +0100, Kieran Bingham wrote:
> Hi Marcus,
>
> Quoting Kieran Bingham (2024-06-20 14:49:59)
> > Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
> > pybind11"), merged before libcamera v0.1.0, libcamera has no longer
> > relied on an external subproject branch of pybind to build the python
> > bindings.
> >
> > Provide a new package option to allow enabling the python bindings on
> > libcamera when python3 is available in the buildroot configuration.
> > Enabling the python bindings will select and bring in pybind as a
> > dependency.
>
> Sorry for not adding you to Cc on the first send.
> Could you review or test this patch for me please?
No worries!
>
> --
> Regards
>
> Kieran
>
> > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > ---
> > package/libcamera/Config.in | 7 +++++++
> > package/libcamera/libcamera.mk | 8 +++++++-
> > 2 files changed, 14 insertions(+), 1 deletion(-)
> >
> > diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
> > index e84b8d342eea..4699e382c760 100644
> > --- a/package/libcamera/Config.in
> > +++ b/package/libcamera/Config.in
> > @@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
> >
> > if BR2_PACKAGE_LIBCAMERA
> >
> > +config BR2_PACKAGE_LIBCAMERA_PYTHON
> > + bool "python bindings"
> > + depends on BR2_PACKAGE_PYTHON3
> > + select BR2_PACKAGE_PYTHON_PYBIND
> > + help
> > + Enable libcamera python bindings
> > +
> > config BR2_PACKAGE_LIBCAMERA_V4L2
> > bool "libcamera v4l2 compatibility layer"
> > help
> > diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
> > index dfcd340b75a0..100934a97d6f 100644
> > --- a/package/libcamera/libcamera.mk
> > +++ b/package/libcamera/libcamera.mk
> > @@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
> > -Dandroid=disabled \
> > -Ddocumentation=disabled \
> > -Dtest=false \
> > - -Dpycamera=disabled \
> > -Dwerror=false
> > LIBCAMERA_INSTALL_STAGING = YES
> > LIBCAMERA_LICENSE = \
> > @@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
> > LIBCAMERA_CXXFLAGS = -faligned-new
> > endif
> >
> > +ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
> > +LIBCAMERA_DEPENDENCIES += python3 python-pybind
> > +LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
> > +else
> > +LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
> > +endif
> > +
> > ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
> > LIBCAMERA_CONF_OPTS += -Dv4l2=true
> > else
> > --
> > 2.34.1
> >
LGTM.
I've currently no hardware available to test it, but at least it
seems to build as it should.
Reviewed-by: Marcus Folkesson <marcus.folkesson@gmail.com>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
2024-07-23 7:06 ` Marcus Folkesson
@ 2024-10-08 11:33 ` Kieran Bingham
2024-10-18 7:43 ` Kieran Bingham
0 siblings, 1 reply; 6+ messages in thread
From: Kieran Bingham @ 2024-10-08 11:33 UTC (permalink / raw)
To: buildroot; +Cc: Marcus Folkesson
Hi all,
Quoting Marcus Folkesson (2024-07-23 08:06:46)
> Hi Kieran,
>
> On Mon, Jul 22, 2024 at 10:45:56AM +0100, Kieran Bingham wrote:
> > Hi Marcus,
> >
> > Quoting Kieran Bingham (2024-06-20 14:49:59)
> > > Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
> > > pybind11"), merged before libcamera v0.1.0, libcamera has no longer
> > > relied on an external subproject branch of pybind to build the python
> > > bindings.
> > >
> > > Provide a new package option to allow enabling the python bindings on
> > > libcamera when python3 is available in the buildroot configuration.
> > > Enabling the python bindings will select and bring in pybind as a
> > > dependency.
> >
> > Sorry for not adding you to Cc on the first send.
> > Could you review or test this patch for me please?
>
> No worries!
>
> >
> > --
> > Regards
> >
> > Kieran
> >
> > > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > > ---
> > > package/libcamera/Config.in | 7 +++++++
> > > package/libcamera/libcamera.mk | 8 +++++++-
> > > 2 files changed, 14 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
> > > index e84b8d342eea..4699e382c760 100644
> > > --- a/package/libcamera/Config.in
> > > +++ b/package/libcamera/Config.in
> > > @@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
> > >
> > > if BR2_PACKAGE_LIBCAMERA
> > >
> > > +config BR2_PACKAGE_LIBCAMERA_PYTHON
> > > + bool "python bindings"
> > > + depends on BR2_PACKAGE_PYTHON3
> > > + select BR2_PACKAGE_PYTHON_PYBIND
> > > + help
> > > + Enable libcamera python bindings
> > > +
> > > config BR2_PACKAGE_LIBCAMERA_V4L2
> > > bool "libcamera v4l2 compatibility layer"
> > > help
> > > diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
> > > index dfcd340b75a0..100934a97d6f 100644
> > > --- a/package/libcamera/libcamera.mk
> > > +++ b/package/libcamera/libcamera.mk
> > > @@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
> > > -Dandroid=disabled \
> > > -Ddocumentation=disabled \
> > > -Dtest=false \
> > > - -Dpycamera=disabled \
> > > -Dwerror=false
> > > LIBCAMERA_INSTALL_STAGING = YES
> > > LIBCAMERA_LICENSE = \
> > > @@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
> > > LIBCAMERA_CXXFLAGS = -faligned-new
> > > endif
> > >
> > > +ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
> > > +LIBCAMERA_DEPENDENCIES += python3 python-pybind
> > > +LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
> > > +else
> > > +LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
> > > +endif
> > > +
> > > ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
> > > LIBCAMERA_CONF_OPTS += -Dv4l2=true
> > > else
> > > --
> > > 2.34.1
> > >
>
> LGTM.
> I've currently no hardware available to test it, but at least it
> seems to build as it should.
>
> Reviewed-by: Marcus Folkesson <marcus.folkesson@gmail.com>
Could this patch be collected please? It enables Python bindings for
libcamera, and we now have visualisation tools (camshark) which uses
them.
Camshark does not need to be packaged in buildroot, it's just a
tool to run on the host directly.
--
Kieran
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
2024-10-08 11:33 ` Kieran Bingham
@ 2024-10-18 7:43 ` Kieran Bingham
0 siblings, 0 replies; 6+ messages in thread
From: Kieran Bingham @ 2024-10-18 7:43 UTC (permalink / raw)
To: buildroot; +Cc: Marcus Folkesson
Hi all,
Is there anything I can do to help get this patch merged?
Regards
--
Kieran
Quoting Kieran Bingham (2024-10-08 12:33:57)
> Hi all,
>
> Quoting Marcus Folkesson (2024-07-23 08:06:46)
> > Hi Kieran,
> >
> > On Mon, Jul 22, 2024 at 10:45:56AM +0100, Kieran Bingham wrote:
> > > Hi Marcus,
> > >
> > > Quoting Kieran Bingham (2024-06-20 14:49:59)
> > > > Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
> > > > pybind11"), merged before libcamera v0.1.0, libcamera has no longer
> > > > relied on an external subproject branch of pybind to build the python
> > > > bindings.
> > > >
> > > > Provide a new package option to allow enabling the python bindings on
> > > > libcamera when python3 is available in the buildroot configuration.
> > > > Enabling the python bindings will select and bring in pybind as a
> > > > dependency.
> > >
> > > Sorry for not adding you to Cc on the first send.
> > > Could you review or test this patch for me please?
> >
> > No worries!
> >
> > >
> > > --
> > > Regards
> > >
> > > Kieran
> > >
> > > > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > > > ---
> > > > package/libcamera/Config.in | 7 +++++++
> > > > package/libcamera/libcamera.mk | 8 +++++++-
> > > > 2 files changed, 14 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
> > > > index e84b8d342eea..4699e382c760 100644
> > > > --- a/package/libcamera/Config.in
> > > > +++ b/package/libcamera/Config.in
> > > > @@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
> > > >
> > > > if BR2_PACKAGE_LIBCAMERA
> > > >
> > > > +config BR2_PACKAGE_LIBCAMERA_PYTHON
> > > > + bool "python bindings"
> > > > + depends on BR2_PACKAGE_PYTHON3
> > > > + select BR2_PACKAGE_PYTHON_PYBIND
> > > > + help
> > > > + Enable libcamera python bindings
> > > > +
> > > > config BR2_PACKAGE_LIBCAMERA_V4L2
> > > > bool "libcamera v4l2 compatibility layer"
> > > > help
> > > > diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
> > > > index dfcd340b75a0..100934a97d6f 100644
> > > > --- a/package/libcamera/libcamera.mk
> > > > +++ b/package/libcamera/libcamera.mk
> > > > @@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
> > > > -Dandroid=disabled \
> > > > -Ddocumentation=disabled \
> > > > -Dtest=false \
> > > > - -Dpycamera=disabled \
> > > > -Dwerror=false
> > > > LIBCAMERA_INSTALL_STAGING = YES
> > > > LIBCAMERA_LICENSE = \
> > > > @@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
> > > > LIBCAMERA_CXXFLAGS = -faligned-new
> > > > endif
> > > >
> > > > +ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
> > > > +LIBCAMERA_DEPENDENCIES += python3 python-pybind
> > > > +LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
> > > > +else
> > > > +LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
> > > > +endif
> > > > +
> > > > ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
> > > > LIBCAMERA_CONF_OPTS += -Dv4l2=true
> > > > else
> > > > --
> > > > 2.34.1
> > > >
> >
> > LGTM.
> > I've currently no hardware available to test it, but at least it
> > seems to build as it should.
> >
> > Reviewed-by: Marcus Folkesson <marcus.folkesson@gmail.com>
>
> Could this patch be collected please? It enables Python bindings for
> libcamera, and we now have visualisation tools (camshark) which uses
> them.
>
> Camshark does not need to be packaged in buildroot, it's just a
> tool to run on the host directly.
>
> --
> Kieran
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/libcamera: Enable python bindings
2024-06-20 13:49 [Buildroot] [PATCH v2] package/libcamera: Enable python bindings Kieran Bingham
2024-07-22 9:45 ` Kieran Bingham
@ 2024-10-23 18:58 ` Julien Olivain
1 sibling, 0 replies; 6+ messages in thread
From: Julien Olivain @ 2024-10-23 18:58 UTC (permalink / raw)
To: Kieran Bingham; +Cc: buildroot
Hi Kieran,
On 20/06/2024 15:49, Kieran Bingham wrote:
> Since libcamera commit f513fd70ba1a ("subprojects: Drop leftovers of
> pybind11"), merged before libcamera v0.1.0, libcamera has no longer
> relied on an external subproject branch of pybind to build the python
> bindings.
>
> Provide a new package option to allow enabling the python bindings on
> libcamera when python3 is available in the buildroot configuration.
> Enabling the python bindings will select and bring in pybind as a
> dependency.
>
> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Thanks for the patch! I applied it to master.
Best regards,
Julien.
> ---
> package/libcamera/Config.in | 7 +++++++
> package/libcamera/libcamera.mk | 8 +++++++-
> 2 files changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
> index e84b8d342eea..4699e382c760 100644
> --- a/package/libcamera/Config.in
> +++ b/package/libcamera/Config.in
> @@ -24,6 +24,13 @@ menuconfig BR2_PACKAGE_LIBCAMERA
>
> if BR2_PACKAGE_LIBCAMERA
>
> +config BR2_PACKAGE_LIBCAMERA_PYTHON
> + bool "python bindings"
> + depends on BR2_PACKAGE_PYTHON3
> + select BR2_PACKAGE_PYTHON_PYBIND
> + help
> + Enable libcamera python bindings
> +
> config BR2_PACKAGE_LIBCAMERA_V4L2
> bool "libcamera v4l2 compatibility layer"
> help
> diff --git a/package/libcamera/libcamera.mk
> b/package/libcamera/libcamera.mk
> index dfcd340b75a0..100934a97d6f 100644
> --- a/package/libcamera/libcamera.mk
> +++ b/package/libcamera/libcamera.mk
> @@ -19,7 +19,6 @@ LIBCAMERA_CONF_OPTS = \
> -Dandroid=disabled \
> -Ddocumentation=disabled \
> -Dtest=false \
> - -Dpycamera=disabled \
> -Dwerror=false
> LIBCAMERA_INSTALL_STAGING = YES
> LIBCAMERA_LICENSE = \
> @@ -45,6 +44,13 @@ ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
> LIBCAMERA_CXXFLAGS = -faligned-new
> endif
>
> +ifeq ($(BR2_PACKAGE_LIBCAMERA_PYTHON),y)
> +LIBCAMERA_DEPENDENCIES += python3 python-pybind
> +LIBCAMERA_CONF_OPTS += -Dpycamera=enabled
> +else
> +LIBCAMERA_CONF_OPTS += -Dpycamera=disabled
> +endif
> +
> ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
> LIBCAMERA_CONF_OPTS += -Dv4l2=true
> else
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-23 18:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-20 13:49 [Buildroot] [PATCH v2] package/libcamera: Enable python bindings Kieran Bingham
2024-07-22 9:45 ` Kieran Bingham
2024-07-23 7:06 ` Marcus Folkesson
2024-10-08 11:33 ` Kieran Bingham
2024-10-18 7:43 ` Kieran Bingham
2024-10-23 18:58 ` Julien Olivain
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox