* ['meta-python][PATCH V2' 1/2] python3-binwalk: add recipe for version 2.3.3
@ 2022-12-01 8:24 Tomasz Żyjewski
2022-12-01 8:24 ` ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
0 siblings, 1 reply; 4+ messages in thread
From: Tomasz Żyjewski @ 2022-12-01 8:24 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] 4+ messages in thread
* ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9
2022-12-01 8:24 ['meta-python][PATCH V2' 1/2] python3-binwalk: add recipe for version 2.3.3 Tomasz Żyjewski
@ 2022-12-01 8:24 ` Tomasz Żyjewski
2022-12-02 9:56 ` [oe] " Michael Opdenacker
0 siblings, 1 reply; 4+ messages in thread
From: Tomasz Żyjewski @ 2022-12-01 8:24 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] 4+ messages in thread
* Re: [oe] ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9
2022-12-01 8:24 ` ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
@ 2022-12-02 9:56 ` Michael Opdenacker
2022-12-02 10:04 ` tomzy
0 siblings, 1 reply; 4+ messages in thread
From: Michael Opdenacker @ 2022-12-02 9:56 UTC (permalink / raw)
To: tomzy; +Cc: michal.kotyla, openembedded-devel
Hi Tomasz
Thanks for the patches!
On 12/1/22 09:24, tomzy 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
However, if I apply your patch through "git am", the author of the
commit will be:
tomzy <tomasz.zyjewski@3mdeb.com>
instead of
Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
Because of this issue, the maintainer has to manually fix this field
when accepting your patch. Worse, if he doesn't catch this, that's
harder to fix afterwards.
You should be able to fix this by running:
git config --global sendemail.from "tomasz.zyjewski@3mdeb.com"
This should add a "From" field to the sent patch which "git am" should
be able to match with your name.
See
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded#Sending_using_git-send-email
Could you try to send an update (don't hesitate to send a private one to
me first)?
Thanks in advance
Michael.
--
Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9
2022-12-02 9:56 ` [oe] " Michael Opdenacker
@ 2022-12-02 10:04 ` tomzy
0 siblings, 0 replies; 4+ messages in thread
From: tomzy @ 2022-12-02 10:04 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]
On Fri, Dec 2, 2022 at 10:56 AM, Michael Opdenacker wrote:
>
> Hi Tomasz
Hi
>
> Thanks for the patches!
>
> On 12/1/22 09:24, tomzy 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
>
> However, if I apply your patch through "git am", the author of the
> commit will be:
> tomzy <tomasz.zyjewski@3mdeb.com>
> instead of
> Tomasz Żyjewski <tomasz.zyjewski@3mdeb.com>
>
> Because of this issue, the maintainer has to manually fix this field
> when accepting your patch. Worse, if he doesn't catch this, that's
> harder to fix afterwards.
I was not aware of this issue. I must have missed it in guidelines. Sorry for that!
>
>
> You should be able to fix this by running:
> git config --global sendemail.from "tomasz.zyjewski@3mdeb.com"
>
> This should add a "From" field to the sent patch which "git am" should
> be able to match with your name.
> See
> https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded#Sending_using_git-send-email
>
>
> Could you try to send an update (don't hesitate to send a private one to
> me first)?
Thank you, I will try that. Should I use `michael.opdenacker@bootlin.com` ?
>
>
> Thanks in advance
> Michael.
>
> --
> Michael Opdenacker, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
[-- Attachment #2: Type: text/html, Size: 2120 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-12-02 10:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-01 8:24 ['meta-python][PATCH V2' 1/2] python3-binwalk: add recipe for version 2.3.3 Tomasz Żyjewski
2022-12-01 8:24 ` ['meta-python][PATCH V2' 2/2] python3-uefi-firmware: add recipe for version 1.9 Tomasz Żyjewski
2022-12-02 9:56 ` [oe] " Michael Opdenacker
2022-12-02 10:04 ` 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.