meta-arago.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
From: Ryan Eatmon <reatmon@ti.com>
To: Denys Dmytriyenko <denis@denix.org>, Nishanth Menon <nm@ti.com>
Cc: <d-gerlach@ti.com>, <j-humphreys@ti.com>, <khilman@ti.com>,
	<meta-arago@lists.yoctoproject.org>, <minas@ti.com>,
	<nikhil.nd@ti.com>, <praneeth@ti.com>, <spatton@ti.com>
Subject: Re: [master/dunfell PATCH V6 00/12] recipes-core: Add a bootstrap Linux image
Date: Tue, 29 Mar 2022 13:31:27 -0500	[thread overview]
Message-ID: <baf9e1ae-b03f-5ae2-3c3f-be9bbd5fc609@ti.com> (raw)
In-Reply-To: <20220324203944.GA23554@denix.org>



On 3/24/2022 15:39, Denys Dmytriyenko wrote:
> On Thu, Mar 24, 2022 at 08:25:14AM -0500, Nishanth Menon wrote:
>> Board bringups are typically painful. however, over the years, folks
>> know of minimal debug tools that are pretty effective in helping debug
>> basic peripherals. Lets create a reusable packagegroup balancing the
>> tools from wisdom from various folks vs the size of the resultant
>> package.
>>
>> We would like to base such a system on more simplistic sysvinit (no
>> offence systemd, you are still our fav), as it has a much smaller
>> footprint.
>>
>> The board startup is best done with a minimal u-boot and kernel device
>> tree configurations.
>>
>> Dependency (for patch #12, depends on https://lore.kernel.org/all/20220314202840.18904-1-reatmon@ti.com/ )
>>
>> Changes since V5:
>> * Patch #10 - switch from GPLv2 to MIT to stick with standard licensing.
> 
> Thanks for addressing all the comments! The series looks good to me:
> 
> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
> 

Applied to dunfell-next.  I could not apply these patches to master as 
master has already started moving towards Kirkstone and the various 
syntax changes that entails.  We will work on migrating the patches to 
master and have another patch series for that branch.



>> V5: https://lore.kernel.org/all/20220322174808.16341-1-nm@ti.com/
>> V4: https://lore.kernel.org/all/20220319123310.8546-1-nm@ti.com/
>> V3: https://lore.kernel.org/all/20220318184045.11246-1-nm@ti.com/
>> V2: https://lore.kernel.org/all/20220318143735.17642-1-nm@ti.com/
>> V1: https://lore.kernel.org/all/20220309021316.28370-1-nm@ti.com/
>>
>>
>> Nishanth Menon (12):
>>    Revert "tisdk-tiny-image: remove packagedata task breaking initramfs
>>      packaging"
>>    tisdk-tiny-image: Split common components into include file
>>    tisdk-tiny-image: Add some usability notes
>>    tisdk-base-image: Reformat documentation and clarify usage
>>    tisdk-default-image: Reformat documentation and clarify usage
>>    tisdk-thinlinux-image: Reformat documentation
>>    tisdk-core-bundle: Add documentation to clarify usage
>>    packagegroups: Add a new bootstrap package group
>>    recipes-core: images: Add a basic bootstrap base image
>>    recipes-bsp: Create a bootstrap-initrd package
>>    recipes-core: images: Introduce tisdk-bootstrap-image
>>    images: Build tisdk-bootstrap-image with tisdk-core-bundle
>>
>>   .../bootstrap-initrd/bootstrap-initrd_1.0.bb  | 22 ++++++++
>>   .../recipes-core/images/arago-tiny-image.inc  |  9 ++++
>>   .../recipes-core/images/tisdk-base-image.bb   |  6 ++-
>>   .../images/tisdk-bootstrap-base-image.bb      | 22 ++++++++
>>   .../images/tisdk-bootstrap-image.bb           | 22 ++++++++
>>   .../recipes-core/images/tisdk-core-bundle.bb  |  7 +++
>>   .../recipes-core/images/tisdk-core-bundle.inc |  2 +-
>>   .../images/tisdk-default-image.bb             |  5 +-
>>   .../images/tisdk-thinlinux-image.bb           |  6 ++-
>>   .../recipes-core/images/tisdk-tiny-image.bb   | 23 ++++----
>>   .../packagegroup-arago-bootstrap.bb           | 53 +++++++++++++++++++
>>   11 files changed, 162 insertions(+), 15 deletions(-)
>>   create mode 100644 meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb
>>   create mode 100644 meta-arago-distro/recipes-core/images/arago-tiny-image.inc
>>   create mode 100644 meta-arago-distro/recipes-core/images/tisdk-bootstrap-base-image.bb
>>   create mode 100644 meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb
>>   create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb
>>
>> -- 
>> 2.31.1
>>
> 

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


      reply	other threads:[~2022-03-29 18:31 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-24 13:25 [master/dunfell PATCH V6 00/12] recipes-core: Add a bootstrap Linux image Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 01/12] Revert "tisdk-tiny-image: remove packagedata task breaking initramfs packaging" Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 02/12] tisdk-tiny-image: Split common components into include file Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 03/12] tisdk-tiny-image: Add some usability notes Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 04/12] tisdk-base-image: Reformat documentation and clarify usage Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 05/12] tisdk-default-image: " Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 06/12] tisdk-thinlinux-image: Reformat documentation Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 07/12] tisdk-core-bundle: Add documentation to clarify usage Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 08/12] packagegroups: Add a new bootstrap package group Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 09/12] recipes-core: images: Add a basic bootstrap base image Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 10/12] recipes-bsp: Create a bootstrap-initrd package Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 11/12] recipes-core: images: Introduce tisdk-bootstrap-image Nishanth Menon
2022-03-24 13:25 ` [master/dunfell PATCH V6 12/12] images: Build tisdk-bootstrap-image with tisdk-core-bundle Nishanth Menon
2022-03-24 20:39 ` [master/dunfell PATCH V6 00/12] recipes-core: Add a bootstrap Linux image Denys Dmytriyenko
2022-03-29 18:31   ` Ryan Eatmon [this message]

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=baf9e1ae-b03f-5ae2-3c3f-be9bbd5fc609@ti.com \
    --to=reatmon@ti.com \
    --cc=d-gerlach@ti.com \
    --cc=denis@denix.org \
    --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=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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).