diff mbox series

[meta-oe,v2] boardid: add recipe

Message ID 20260921121133.3377823-1-joaohf@gmail.com
State New
Headers show
Series [meta-oe,v2] boardid: add recipe | expand

Commit Message

João Henrique Ferreira de Freitas Sept. 21, 2026, 12:11 p.m. UTC
Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com>
CC: Ross Burton <Ross.Burton@arm.com>
---
changes in v2:
 - remove PV
 - remove do_configure and do_install

 .../boardid/boardid_1.15.0.bb                 | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-oe/recipes-extended/boardid/boardid_1.15.0.bb

Comments

Khem Raj Sept. 21, 2026, 6:52 p.m. UTC | #1
I accepted v1, Please send the changes done in v2 as an incremental patch.

On Mon, Sep 21, 2026 at 5:11 AM João Henrique Ferreira de Freitas via
lists.openembedded.org <joaohf=gmail.com@lists.openembedded.org> wrote:

> Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com>
> CC: Ross Burton <Ross.Burton@arm.com>
> ---
> changes in v2:
>  - remove PV
>  - remove do_configure and do_install
>
>  .../boardid/boardid_1.15.0.bb                 | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>  create mode 100644 meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
>
> diff --git a/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
> b/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
> new file mode 100644
> index 0000000000..d77d91162c
> --- /dev/null
> +++ b/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "Print out a platform-specific board serial number"
> +DESCRIPTION = "This program looks up a device-specific serial number and
> prints it. \
> +The original use was to provide some non-changing and unique material for
> dynamically \
> +creating device names on a local LAN. There are implementation specific
> boards as well \
> +generic mechanisms for getting serial number."
> +HOMEPAGE = "https://github.com/nerves-project/boardid"
> +LICENSE = "Apache-2.0 AND CC-BY-4.0 AND CC0-1.0"
> +LIC_FILES_CHKSUM =
> "file://LICENSES/Apache-2.0.txt;md5=c846ebb396f8b174b10ded4771514fcc \
> +
> file://LICENSES/CC0-1.0.txt;md5=65d3616852dbf7b1a6d4b53b00626032 \
> +
> file://LICENSES/CC-BY-4.0.txt;md5=9b33bbd06fb58995fb0e299cd38d1838"
> +
> +SRC_URI = "git://
> github.com/nerves-project/boardid/;protocol=https;branch=main"
> +
> +SRCREV = "2ccf22a8be22d7597e16fb225c1173876674f7a4"
> +
> +do_install () {
> +        install -d ${D}${bindir}
> +        install -m 0755 ${S}/boardid ${D}${bindir}
> +}
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#130161):
> https://lists.openembedded.org/g/openembedded-devel/message/130161
> Mute This Topic: https://lists.openembedded.org/mt/121355518/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
diff mbox series

Patch

diff --git a/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb b/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
new file mode 100644
index 0000000000..d77d91162c
--- /dev/null
+++ b/meta-oe/recipes-extended/boardid/boardid_1.15.0.bb
@@ -0,0 +1,19 @@ 
+SUMMARY = "Print out a platform-specific board serial number"
+DESCRIPTION = "This program looks up a device-specific serial number and prints it. \
+The original use was to provide some non-changing and unique material for dynamically \
+creating device names on a local LAN. There are implementation specific boards as well \
+generic mechanisms for getting serial number."
+HOMEPAGE = "https://github.com/nerves-project/boardid"
+LICENSE = "Apache-2.0 AND CC-BY-4.0 AND CC0-1.0"
+LIC_FILES_CHKSUM = "file://LICENSES/Apache-2.0.txt;md5=c846ebb396f8b174b10ded4771514fcc \
+                    file://LICENSES/CC0-1.0.txt;md5=65d3616852dbf7b1a6d4b53b00626032 \
+                    file://LICENSES/CC-BY-4.0.txt;md5=9b33bbd06fb58995fb0e299cd38d1838"
+
+SRC_URI = "git://github.com/nerves-project/boardid/;protocol=https;branch=main"
+
+SRCREV = "2ccf22a8be22d7597e16fb225c1173876674f7a4"
+
+do_install () {
+        install -d ${D}${bindir}
+        install -m 0755 ${S}/boardid ${D}${bindir}
+}