All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3
@ 2022-12-01  8:34 Tomasz Żyjewski
  2022-12-01  8:34 ` [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
  2022-12-01 18:42 ` [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Khem Raj
  0 siblings, 2 replies; 8+ messages in thread
From: Tomasz Żyjewski @ 2022-12-01  8:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: michal.kotyla

Install binwalk utility.

Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
and extracting firmware images.

Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
---
 .../python/python3-binwalk_2.3.3.bb             | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb

diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
new file mode 100644
index 000000000000..362efa275148
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
@@ -0,0 +1,17 @@
+SUMMARY = "Firmware analysis tool"
+DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a fast, \
+easy to use tool for analyzing, reverse engineering, and extracting firmware \
+images."
+HOMEPAGE = "https://github.com/ReFirmLabs/binwalk"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64"
+
+SRC_URI = "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master"
+
+SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd"
+
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+RDEPENDS:${PN} += "python3-core"
-- 
2.25.1



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

* [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9
  2022-12-01  8:34 [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Tomasz Żyjewski
@ 2022-12-01  8:34 ` Tomasz Żyjewski
  2022-12-01 18:59   ` [oe] " Khem Raj
  2022-12-01 18:42 ` [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Khem Raj
  1 sibling, 1 reply; 8+ messages in thread
From: Tomasz Żyjewski @ 2022-12-01  8:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: michal.kotyla

Install uefi-firmware-parser tool

The UEFI firmware parseer is a simple module and set of scripts for
parsing, extracting, and recreating UEFI firmware volumes.

Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
---
 .../python/python3-uefi-firmware_1.9.bb         | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb

diff --git a/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
new file mode 100644
index 000000000000..3837a17437b1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
@@ -0,0 +1,17 @@
+SUMMARY = "Various data structures and parsing tools for UEFI firmware."
+DESCRIPTION = "This package contains Python UEFI firmware parser tool. The \
+UEFI firmware parser is a simple module and set of scripts for parsing, \
+extracting, and recreating UEFI firmware volumes. This includes parsing \
+modules for BIOS, OptionROM, Intel ME and other formats too."
+HOMEPAGE = "https://github.com/theopolis/uefi-firmware-parser"
+AUTHOR = "Teddy Reed <teddy@prosauce.org>"
+LICENSE = "BSD-2-Clause & BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://setup.py;md5=90fa5bae1547550f1c1993f651eda955"
+
+SRC_URI = "git://github.com/theopolis/uefi-firmware-parser;protocol=https;branch=master"
+
+SRCREV = "502f1bada1ed11fdd1792646fda0bfafb8fa57fb"
+
+S = "${WORKDIR}/git"
+
+inherit setuptools3
-- 
2.25.1



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

* Re: [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3
  2022-12-01  8:34 [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Tomasz Żyjewski
  2022-12-01  8:34 ` [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
@ 2022-12-01 18:42 ` Khem Raj
  2022-12-02  6:48   ` tomzy
  1 sibling, 1 reply; 8+ messages in thread
From: Khem Raj @ 2022-12-01 18:42 UTC (permalink / raw)
  To: tomzy; +Cc: openembedded-devel, michal.kotyla

Can you rebase these patches on top of master or master-next and
resend v3 please ?

On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
>
> Install binwalk utility.
>
> Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
> and extracting firmware images.
>
> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
> ---
>  .../python/python3-binwalk_2.3.3.bb             | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
> new file mode 100644
> index 000000000000..362efa275148
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
> @@ -0,0 +1,17 @@
> +SUMMARY = "Firmware analysis tool"
> +DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a fast, \
> +easy to use tool for analyzing, reverse engineering, and extracting firmware \
> +images."
> +HOMEPAGE = "https://github.com/ReFirmLabs/binwalk"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64"
> +
> +SRC_URI = "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master"
> +
> +SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit setuptools3
> +
> +RDEPENDS:${PN} += "python3-core"
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#99882): https://lists.openembedded.org/g/openembedded-devel/message/99882
> Mute This Topic: https://lists.openembedded.org/mt/95377962/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [oe] [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9
  2022-12-01  8:34 ` [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
@ 2022-12-01 18:59   ` Khem Raj
  2022-12-02  6:51     ` tomzy
  0 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2022-12-01 18:59 UTC (permalink / raw)
  To: tomzy; +Cc: openembedded-devel, michal.kotyla

please rebase on top of master or master-next and resend

On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
>
> Install uefi-firmware-parser tool
>
> The UEFI firmware parseer is a simple module and set of scripts for
> parsing, extracting, and recreating UEFI firmware volumes.
>
> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
> ---
>  .../python/python3-uefi-firmware_1.9.bb         | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
> new file mode 100644
> index 000000000000..3837a17437b1
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
> @@ -0,0 +1,17 @@
> +SUMMARY = "Various data structures and parsing tools for UEFI firmware."
> +DESCRIPTION = "This package contains Python UEFI firmware parser tool. The \
> +UEFI firmware parser is a simple module and set of scripts for parsing, \
> +extracting, and recreating UEFI firmware volumes. This includes parsing \
> +modules for BIOS, OptionROM, Intel ME and other formats too."
> +HOMEPAGE = "https://github.com/theopolis/uefi-firmware-parser"
> +AUTHOR = "Teddy Reed <teddy@prosauce.org>"
> +LICENSE = "BSD-2-Clause & BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://setup.py;md5=90fa5bae1547550f1c1993f651eda955"
> +
> +SRC_URI = "git://github.com/theopolis/uefi-firmware-parser;protocol=https;branch=master"
> +
> +SRCREV = "502f1bada1ed11fdd1792646fda0bfafb8fa57fb"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit setuptools3
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#99883): https://lists.openembedded.org/g/openembedded-devel/message/99883
> Mute This Topic: https://lists.openembedded.org/mt/95377963/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3
  2022-12-01 18:42 ` [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Khem Raj
@ 2022-12-02  6:48   ` tomzy
  2022-12-02 16:50     ` [oe] " Khem Raj
  0 siblings, 1 reply; 8+ messages in thread
From: tomzy @ 2022-12-02  6:48 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1798 bytes --]

On Thu, Dec 1, 2022 at 07:43 PM, Khem Raj wrote:

> 
> Can you rebase these patches on top of master or master-next and
> resend v3 please ?

I can but isn't it already merged in master?

https://git.openembedded.org/meta-openembedded/commit/?id=7ea0e04aaee19f61e18bf998bb07f02e52d8146e

> 
> On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
> 
>> Install binwalk utility.
>> 
>> Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
>> and extracting firmware images.
>> 
>> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
>> ---
>> .../python/python3-binwalk_2.3.3.bb | 17 +++++++++++++++++
>> 1 file changed, 17 insertions(+)
>> create mode 100644
>> meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> 
>> diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> new file mode 100644
>> index 000000000000..362efa275148
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> @@ -0,0 +1,17 @@
>> +SUMMARY = "Firmware analysis tool"
>> +DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a
>> fast, \
>> +easy to use tool for analyzing, reverse engineering, and extracting
>> firmware \
>> +images."
>> +HOMEPAGE = " https://github.com/ReFirmLabs/binwalk"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64"
>> +
>> +SRC_URI =
>> "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master"
>> +
>> +SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +inherit setuptools3
>> +
>> +RDEPENDS:${PN} += "python3-core"
>> --
>> 2.25.1
>> 
>> 
> 
>

[-- Attachment #2: Type: text/html, Size: 1986 bytes --]

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

* Re: [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9
  2022-12-01 18:59   ` [oe] " Khem Raj
@ 2022-12-02  6:51     ` tomzy
  0 siblings, 0 replies; 8+ messages in thread
From: tomzy @ 2022-12-02  6:51 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1996 bytes --]

On Thu, Dec 1, 2022 at 07:59 PM, Khem Raj wrote:

> 
> please rebase on top of master or master-next and resend

There it is https://lists.openembedded.org/g/openembedded-devel/message/99909

> 
> 
> On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
> 
>> Install uefi-firmware-parser tool
>> 
>> The UEFI firmware parseer is a simple module and set of scripts for
>> parsing, extracting, and recreating UEFI firmware volumes.
>> 
>> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
>> ---
>> .../python/python3-uefi-firmware_1.9.bb | 17 +++++++++++++++++
>> 1 file changed, 17 insertions(+)
>> create mode 100644
>> meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
>> 
>> diff --git
>> a/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
>> b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
>> new file mode 100644
>> index 000000000000..3837a17437b1
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb
>> @@ -0,0 +1,17 @@
>> +SUMMARY = "Various data structures and parsing tools for UEFI firmware."
>> +DESCRIPTION = "This package contains Python UEFI firmware parser tool.
>> The \
>> +UEFI firmware parser is a simple module and set of scripts for parsing, \
>> 
>> +extracting, and recreating UEFI firmware volumes. This includes parsing \
>> 
>> +modules for BIOS, OptionROM, Intel ME and other formats too."
>> +HOMEPAGE = " https://github.com/theopolis/uefi-firmware-parser"
>> +AUTHOR = "Teddy Reed <teddy@prosauce.org>"
>> +LICENSE = "BSD-2-Clause & BSD-3-Clause"
>> +LIC_FILES_CHKSUM = "file://setup.py;md5=90fa5bae1547550f1c1993f651eda955"
>> 
>> +
>> +SRC_URI =
>> "git://github.com/theopolis/uefi-firmware-parser;protocol=https;branch=master"
>> 
>> +
>> +SRCREV = "502f1bada1ed11fdd1792646fda0bfafb8fa57fb"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +inherit setuptools3
>> --
>> 2.25.1
>> 
>> 
>> 
> 
>

[-- Attachment #2: Type: text/html, Size: 2181 bytes --]

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

* Re: [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3
  2022-12-02  6:48   ` tomzy
@ 2022-12-02 16:50     ` Khem Raj
  2022-12-05  8:46       ` tomzy
  0 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2022-12-02 16:50 UTC (permalink / raw)
  To: tomzy; +Cc: openembedded-devel

On Thu, Dec 1, 2022 at 10:49 PM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
>
> On Thu, Dec 1, 2022 at 07:43 PM, Khem Raj wrote:
>
> Can you rebase these patches on top of master or master-next and
> resend v3 please ?
>
> I can but isn't it already merged in master?
>
> https://git.openembedded.org/meta-openembedded/commit/?id=7ea0e04aaee19f61e18bf998bb07f02e52d8146e
>

It is, thats why I am asking for an incremental patch on top of what is merged.

> On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
>
> Install binwalk utility.
>
> Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
> and extracting firmware images.
>
> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
> ---
> .../python/python3-binwalk_2.3.3.bb | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644 meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
> new file mode 100644
> index 000000000000..362efa275148
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
> @@ -0,0 +1,17 @@
> +SUMMARY = "Firmware analysis tool"
> +DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a fast, \
> +easy to use tool for analyzing, reverse engineering, and extracting firmware \
> +images."
> +HOMEPAGE = "https://github.com/ReFirmLabs/binwalk"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64"
> +
> +SRC_URI = "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master"
> +
> +SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit setuptools3
> +
> +RDEPENDS:${PN} += "python3-core"
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#99908): https://lists.openembedded.org/g/openembedded-devel/message/99908
> Mute This Topic: https://lists.openembedded.org/mt/95377962/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3
  2022-12-02 16:50     ` [oe] " Khem Raj
@ 2022-12-05  8:46       ` tomzy
  0 siblings, 0 replies; 8+ messages in thread
From: tomzy @ 2022-12-05  8:46 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2259 bytes --]

On Fri, Dec 2, 2022 at 05:50 PM, Khem Raj wrote:

> 
> On Thu, Dec 1, 2022 at 10:49 PM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
> 
>> On Thu, Dec 1, 2022 at 07:43 PM, Khem Raj wrote:
>> 
>> Can you rebase these patches on top of master or master-next and
>> resend v3 please ?
>> 
>> I can but isn't it already merged in master?
>> 
>> https://git.openembedded.org/meta-openembedded/commit/?id=7ea0e04aaee19f61e18bf998bb07f02e52d8146e
>> 
> 
> It is, thats why I am asking for an incremental patch on top of what is
> merged.

Hi, sorry I am not sure what you mean here. Did you want me to rebase the second change and resend as V3?

Something like this? https://lists.openembedded.org/g/openembedded-devel/message/99950

> 
> 
> 
>> On Thu, Dec 1, 2022 at 12:35 AM tomzy <tomasz.zyjewski@3mdeb.com> wrote:
>> 
>> Install binwalk utility.
>> 
>> Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
>> and extracting firmware images.
>> 
>> Signed-off-by: Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
>> ---
>> .../python/python3-binwalk_2.3.3.bb | 17 +++++++++++++++++
>> 1 file changed, 17 insertions(+)
>> create mode 100644
>> meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> 
>> diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> new file mode 100644
>> index 000000000000..362efa275148
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
>> @@ -0,0 +1,17 @@
>> +SUMMARY = "Firmware analysis tool"
>> +DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a
>> fast, \
>> +easy to use tool for analyzing, reverse engineering, and extracting
>> firmware \
>> +images."
>> +HOMEPAGE = " https://github.com/ReFirmLabs/binwalk"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64"
>> +
>> +SRC_URI =
>> "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master"
>> +
>> +SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +inherit setuptools3
>> +
>> +RDEPENDS:${PN} += "python3-core"
>> --
>> 2.25.1
>> 
>> 
>> 
> 
>

[-- Attachment #2: Type: text/html, Size: 2615 bytes --]

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

end of thread, other threads:[~2022-12-05  8:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-01  8:34 [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Tomasz Żyjewski
2022-12-01  8:34 ` [meta-python][PATCH V3 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
2022-12-01 18:59   ` [oe] " Khem Raj
2022-12-02  6:51     ` tomzy
2022-12-01 18:42 ` [oe] [meta-python][PATCH V3 1/2] python3-binwalk: add recipe for version 2.3.3 Khem Raj
2022-12-02  6:48   ` tomzy
2022-12-02 16:50     ` [oe] " Khem Raj
2022-12-05  8:46       ` tomzy

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.