All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Denys Dmytriyenko" <denis@denix.org>
To: nm@ti.com
Cc: Ryan Eatmon <reatmon@ti.com>, Dave Gerlach <d-gerlach@ti.com>,
	"Humphreys, Jonathan" <j-humphreys@ti.com>,
	praneeth@ti.com, minas@ti.com, "Hilman, Kevin" <khilman@ti.com>,
	"Patton, Schuyler" <spatton@ti.com>,
	"Devshatwar, Nikhil" <nikhil.nd@ti.com>,
	meta-arago@lists.yoctoproject.org
Subject: Re: [meta-arago] [dunfell/master PATCH 3/6] packagegroups: Add a new bootstrap package group
Date: Fri, 11 Mar 2022 12:43:09 -0500	[thread overview]
Message-ID: <20220311174309.GC1766@denix.org> (raw)
In-Reply-To: <20220309021316.28370-4-nm@ti.com>

On Tue, Mar 08, 2022 at 08:13:13PM -0600, Nishanth Menon via lists.yoctoproject.org wrote:
> Lets try and create a minimal package group for board bringup. Lets
> call this basic system necessary for board bringup as "bootstrap".
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
>  .../packagegroup-arago-bootstrap.bb           | 55 +++++++++++++++++++
>  1 file changed, 55 insertions(+)
>  create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> new file mode 100644
> index 000000000000..e5b670a16b73
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> @@ -0,0 +1,55 @@
> +DESCRIPTION = "Task to install additional utilities for initial board bringup"

Need to start setting SUMMARY by default, not DESCRIPTION. DESCRIPTION is an 
alternative longer explanation for the package, otherwise it's the same as 
SUMMARY. Yes, I know many recipes still use the old convention, but need to be 
fixed.


> +LICENSE = "MIT"
> +PR = "r0"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +inherit packagegroup
> +
> +PACKAGES =+ "${PN}-extra"

I don't see ${PN}-extra being used/populated anywhere here.


> +UTILS = " \
> +	 arm-benchmarks \
> +	 evtest \
> +	 memtester \
> +	 nbench-byte \
> +	 pcitest \
> +	 serialcheck \
> +	 yavta \
> +	 hdparm \
> +	 i2c-tools \
> +	 libdrm-tests \
> +	 rt-tests \
> +	 iozone3 \
> +	 mtd-utils-ubifs-tests \
> +	 net-tools \
> +	 ethtool  \
> +	 pciutils \
> +	 rng-tools \
> +	 stress-ng \
> +	 iperf \
> +	 lmbench \
> +	 usbutils \
> +	 devmem2 \
> +	 phytool \
> +"
> +
> +UTILS_append_ti33x = " \
> +    omapconf \
> +"
> +
> +UTILS_append_ti43x = " \
> +    omapconf \
> +"
> +
> +UTILS_append_omap-a15 = " \
> +    omapconf \
> +"
> +
> +UTILS_append_k3 = " \
> +    k3conf \
> +"
> +
> +RDEPENDS_${PN} = "\
> +    ${UTILS} \
> +"
> -- 
> 2.31.1
> 
> 
> 
> 
> 
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964

WARNING: multiple messages have this Message-ID (diff)
From: Denys Dmytriyenko <denis@denix.org>
To: nm@ti.com
Cc: Ryan Eatmon <reatmon@ti.com>, Dave Gerlach <d-gerlach@ti.com>,
	"Humphreys, Jonathan" <j-humphreys@ti.com>,
	praneeth@ti.com, minas@ti.com, "Hilman, Kevin" <khilman@ti.com>,
	"Patton, Schuyler" <spatton@ti.com>,
	"Devshatwar, Nikhil" <nikhil.nd@ti.com>,
	meta-arago@lists.yoctoproject.org
Subject: Re: [meta-arago] [dunfell/master PATCH 3/6] packagegroups: Add a new bootstrap package group
Date: Fri, 11 Mar 2022 12:43:09 -0500	[thread overview]
Message-ID: <20220311174309.GC1766@denix.org> (raw)
Message-ID: <20220311174309.PccIX4BtWTyM78xSxqw0FHu2yhI8JshV_oyvD2sHcDg@z> (raw)
In-Reply-To: <20220309021316.28370-4-nm@ti.com>

On Tue, Mar 08, 2022 at 08:13:13PM -0600, Nishanth Menon via lists.yoctoproject.org wrote:
> Lets try and create a minimal package group for board bringup. Lets
> call this basic system necessary for board bringup as "bootstrap".
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
>  .../packagegroup-arago-bootstrap.bb           | 55 +++++++++++++++++++
>  1 file changed, 55 insertions(+)
>  create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> new file mode 100644
> index 000000000000..e5b670a16b73
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
> @@ -0,0 +1,55 @@
> +DESCRIPTION = "Task to install additional utilities for initial board bringup"

Need to start setting SUMMARY by default, not DESCRIPTION. DESCRIPTION is an 
alternative longer explanation for the package, otherwise it's the same as 
SUMMARY. Yes, I know many recipes still use the old convention, but need to be 
fixed.


> +LICENSE = "MIT"
> +PR = "r0"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +inherit packagegroup
> +
> +PACKAGES =+ "${PN}-extra"

I don't see ${PN}-extra being used/populated anywhere here.


> +UTILS = " \
> +	 arm-benchmarks \
> +	 evtest \
> +	 memtester \
> +	 nbench-byte \
> +	 pcitest \
> +	 serialcheck \
> +	 yavta \
> +	 hdparm \
> +	 i2c-tools \
> +	 libdrm-tests \
> +	 rt-tests \
> +	 iozone3 \
> +	 mtd-utils-ubifs-tests \
> +	 net-tools \
> +	 ethtool  \
> +	 pciutils \
> +	 rng-tools \
> +	 stress-ng \
> +	 iperf \
> +	 lmbench \
> +	 usbutils \
> +	 devmem2 \
> +	 phytool \
> +"
> +
> +UTILS_append_ti33x = " \
> +    omapconf \
> +"
> +
> +UTILS_append_ti43x = " \
> +    omapconf \
> +"
> +
> +UTILS_append_omap-a15 = " \
> +    omapconf \
> +"
> +
> +UTILS_append_k3 = " \
> +    k3conf \
> +"
> +
> +RDEPENDS_${PN} = "\
> +    ${UTILS} \
> +"
> -- 
> 2.31.1
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#13610): https://lists.yoctoproject.org/g/meta-arago/message/13610
> Mute This Topic: https://lists.yoctoproject.org/mt/89653829/3617104
> Group Owner: meta-arago+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [denis@denix.org]
> -=-=-=-=-=-=-=-=-=-=-=-
> 
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964


  reply	other threads:[~2022-03-11 17:43 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-09  2:13 [dunfell/master PATCH 0/6] recipes-core: Lets add a bootstrap Linux image Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 1/6] tisdk-tiny-image: Split common components into include file Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 2/6] tisdk-tiny-image: Add some usability notes Nishanth Menon
2022-03-11 17:38   ` Denys Dmytriyenko
2022-03-18 12:34     ` Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 3/6] packagegroups: Add a new bootstrap package group Nishanth Menon
2022-03-11 17:43   ` Denys Dmytriyenko [this message]
2022-03-11 17:43     ` [meta-arago] " Denys Dmytriyenko
2022-03-18 12:35     ` Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 4/6] recipes-core: images: Add a basic bootstrap base image Nishanth Menon
2022-03-11 17:53   ` Denys Dmytriyenko
2022-03-18 12:36     ` Nishanth Menon
     [not found]   ` <16DB65153852778E.24530@lists.yoctoproject.org>
2022-03-11 18:18     ` [meta-arago] " Denys Dmytriyenko
2022-03-18 12:38       ` Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 5/6] recipes-bsp: Create a k3-bootstrap-initrd package Nishanth Menon
2022-03-11 18:06   ` [meta-arago] " Denys Dmytriyenko
2022-03-18 12:37     ` Nishanth Menon
2022-03-09  2:13 ` [dunfell/master PATCH 6/6] recipes-core: images: Introduce tisdk-bootstrap-image Nishanth Menon
2022-03-11 21:34   ` [meta-arago] " Denys Dmytriyenko
2022-03-18 12:39     ` Nishanth Menon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220311174309.GC1766@denix.org \
    --to=denis@denix.org \
    --cc=d-gerlach@ti.com \
    --cc=j-humphreys@ti.com \
    --cc=khilman@ti.com \
    --cc=meta-arago@lists.yoctoproject.org \
    --cc=minas@ti.com \
    --cc=nikhil.nd@ti.com \
    --cc=nm@ti.com \
    --cc=praneeth@ti.com \
    --cc=reatmon@ti.com \
    --cc=spatton@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.