From: Denys Dmytriyenko <denis@denix.org>
To: praneeth@ti.com
Cc: Paresh Bhagat <p-bhagat@ti.com>,
meta-arago@lists.yoctoproject.org, reatmon@ti.com,
c-shilwant@ti.com, s-adivi@ti.com
Subject: Re: [[meta-arago][tisdk-setup-scripts][master][PATCH]] create-sdcard : Correct if condition which checks for boot images
Date: Mon, 10 Oct 2022 20:44:45 -0400 [thread overview]
Message-ID: <20221011004445.GD30861@denix.org> (raw)
In-Reply-To: <0928849a-7b9c-bdc3-21f7-09f3d870336f@ti.com>
On Mon, Oct 10, 2022 at 05:32:23PM -0500, praneeth via lists.yoctoproject.org wrote:
> On 10/10/2022 2:40 AM, Paresh Bhagat wrote:
> >Jira - https://jira.itg.ti.com/browse/SITSW-1649
>
> This is upstream mailing list.
>
> Please keep the TI internal jira-ids away from commit descriptions
> or cover-letters please.
The Subject line contains double/netsted brackets:
[[meta-arago][tisdk-setup-scripts][master][PATCH]] create-sdcard : Correct if condition which checks for boot images
Which doesn't play nice with the Patchwork and stray brackets end up in git
history:
https://git.ti.com/cgit/arago-project/oe-layersetup/commit/?id=f80538808a4d82457766388e95929e075871dd6d
The list automatically adds [meta-arago], so when sending out, your patch
Subject should look like:
[tisdk-setup-scripts][PATCH] create-sdcard: Correct if condition which checks for boot images
Thanks,
Denys
> >The if condition which checks for boot binaries for am65xx and
> >j7 devices has no spaces which shows error while running create-sdcard.sh.
> >Add the required spaces in if condition.
> >
> >Signed-off-by: Paresh Bhagat <p-bhagat@ti.com>
> >---
> > create-sdcard.sh | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >diff --git a/create-sdcard.sh b/create-sdcard.sh
> >index 4af6c94..5c3490a 100644
> >--- a/create-sdcard.sh
> >+++ b/create-sdcard.sh
> >@@ -1057,7 +1057,7 @@ if [ $BOOTPATHOPTION -eq 1 ] ; then
> > echo ""
> > #copy boot files out of board support
> >- if ["$TARDEVICENAME" == "am65xx"] || ["$TARDEVICENAME" == "j7"]; then
> >+ if [ "$TARDEVICENAME" == "am65xx" ] || [ "$TARDEVICENAME" == "j7" ]; then
> > if [ "$MLO" == "" ] && ( [ "$SPL_R5" == "" ] || [ "$SPL_A53" == "" ] || [ "$SYSFW" == "" ] ); then
> > echo "Boot image not found"
> > fi
prev parent reply other threads:[~2022-10-11 0:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-10 7:40 [[meta-arago][tisdk-setup-scripts][master][PATCH]] create-sdcard : Correct if condition which checks for boot images Paresh Bhagat
2022-10-10 22:32 ` Bajjuri, Praneeth
2022-10-11 0:44 ` Denys Dmytriyenko [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=20221011004445.GD30861@denix.org \
--to=denis@denix.org \
--cc=c-shilwant@ti.com \
--cc=meta-arago@lists.yoctoproject.org \
--cc=p-bhagat@ti.com \
--cc=praneeth@ti.com \
--cc=reatmon@ti.com \
--cc=s-adivi@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.