* Re: [arago-commits] Praneeth Bajjuri : ti-rtos: Update path for firmwares on j7200
[not found] <20210305172351.2ADC4529B6@arago-project.org>
@ 2021-03-05 20:04 ` Denys Dmytriyenko
2021-03-05 21:25 ` [meta-ti] " praneeth
0 siblings, 1 reply; 2+ messages in thread
From: Denys Dmytriyenko @ 2021-03-05 20:04 UTC (permalink / raw)
To: meta-ti
Praneeth,
Haven't seen this patch on the list yet...
On Fri, Mar 05, 2021 at 05:23:51PM +0000, Arago Project git wrote:
> Module: meta-ti
> Branch: dunfell-next
> Commit: b93298f444b7180c88f30b33240394a4e38241cb
> URL: http://arago-project.org/git/meta-ti.git?a=commit;h=b93298f444b7180c88f30b33240394a4e38241cb
>
> Author: Praneeth Bajjuri <praneeth@ti.com>
> Date: Fri Mar 5 11:17:26 2021 -0600
>
> ti-rtos: Update path for firmwares on j7200
>
> Between j7200 firmware tags 07.03.00.10 to 07.03.00.16
> the downloadable weburl link changed
> from *processor-sdk-rtos-jacinto7 to processor-sdk-rtos-j7200
Ok, this actually explains what was going on and what Nishanth was trying to
fix.
> This patch is to fix the recipe to pick the firmware from the
> expected location.
>
> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>
> DEFAULT_RTOS_WEBLINK = "undefined"
> DEFAULT_RTOS_WEBLINK_j7 = "https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-jacinto7/firmware/${CORESDK_RTOS_VERSION}"
> +DEFAULT_RTOS_WEBLINK_j7200 = "https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-j7200/firmware/${CORESDK_RTOS_VERSION}"
That won't work, need to use _j7200-evm, as there's no _j7200 override
defined, as explained here:
https://lists.yoctoproject.org/g/meta-ti/message/13488
> DEFAULT_RTOS_WEBLINK_am65xx = "https://software-dl.ti.com/processor-sdk-rtos/esd/AM65X/firmware/${CORESDK_RTOS_VERSION}"
> DEFAULT_RTOS_WEBLINK_am64xx = "https://software-dl.ti.com/processor-sdk-rtos/esd/AM64X/firmware/${CORESDK_RTOS_VERSION}"
--
Denys
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [meta-ti] [arago-commits] Praneeth Bajjuri : ti-rtos: Update path for firmwares on j7200
2021-03-05 20:04 ` [arago-commits] Praneeth Bajjuri : ti-rtos: Update path for firmwares on j7200 Denys Dmytriyenko
@ 2021-03-05 21:25 ` praneeth
0 siblings, 0 replies; 2+ messages in thread
From: praneeth @ 2021-03-05 21:25 UTC (permalink / raw)
To: Denys Dmytriyenko, meta-ti
Denys,
On 3/5/21 2:04 PM, Denys Dmytriyenko wrote:
> Praneeth,
>
> Haven't seen this patch on the list yet...
Thanks for reviewing ahead, yeah i didnot push yet. Was using
dunfell-next to experiment on the fix.
>
>
> On Fri, Mar 05, 2021 at 05:23:51PM +0000, Arago Project git wrote:
>> Module: meta-ti
>> Branch: dunfell-next
>> Commit: b93298f444b7180c88f30b33240394a4e38241cb
>> URL: http://arago-project.org/git/meta-ti.git?a=commit;h=b93298f444b7180c88f30b33240394a4e38241cb
>>
>> Author: Praneeth Bajjuri <praneeth@ti.com>
>> Date: Fri Mar 5 11:17:26 2021 -0600
>>
>> ti-rtos: Update path for firmwares on j7200
>>
>> Between j7200 firmware tags 07.03.00.10 to 07.03.00.16
>> the downloadable weburl link changed
>> from *processor-sdk-rtos-jacinto7 to processor-sdk-rtos-j7200
>
> Ok, this actually explains what was going on and what Nishanth was trying to
> fix.
>
updated the description little more in the patch i just posted for review.
Basically in the new RTOS firmware tag the firmware public downloadable
link has changed the location.
New location based on the metadata.inc associated with the tag for j7200
is at
https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-j7200/firmware/07_03_00_16/coresdk_rtos_j7200_07_03_00_16_firmware.tar.xz
The builds were failing because the firmware was not present at this
location till sometime back.
>
>> This patch is to fix the recipe to pick the firmware from the
>> expected location.
>>
>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>>
>> DEFAULT_RTOS_WEBLINK = "undefined"
>> DEFAULT_RTOS_WEBLINK_j7 = "https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-jacinto7/firmware/${CORESDK_RTOS_VERSION}"
>> +DEFAULT_RTOS_WEBLINK_j7200 = "https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-j7200/firmware/${CORESDK_RTOS_VERSION}"
>
> That won't work, need to use _j7200-evm, as there's no _j7200 override
> defined, as explained here:
> https://lists.yoctoproject.org/g/meta-ti/message/13488
>
>
Thanks for the recommendation, fixed the name in the patch i just posted
for review.
>> DEFAULT_RTOS_WEBLINK_am65xx = "https://software-dl.ti.com/processor-sdk-rtos/esd/AM65X/firmware/${CORESDK_RTOS_VERSION}"
>> DEFAULT_RTOS_WEBLINK_am64xx = "https://software-dl.ti.com/processor-sdk-rtos/esd/AM64X/firmware/${CORESDK_RTOS_VERSION}"
>
>
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-03-05 21:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20210305172351.2ADC4529B6@arago-project.org>
2021-03-05 20:04 ` [arago-commits] Praneeth Bajjuri : ti-rtos: Update path for firmwares on j7200 Denys Dmytriyenko
2021-03-05 21:25 ` [meta-ti] " praneeth
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.