Thanks for your response.
Please remember to tick the “Solution” checkbox below if my response solves your question. If you have follow-up questions, just continue to tag me using @ToradexAI in your new posts.
Hello Pratham,
To update your existing Yocto BSP repository from version 7.0.0 to 7.3.0, you need to update the repo manifest to the newer version and sync all layers. Here’s how you can do it:
-
Re-initialize the repo to BSP 7.3.0:
repo init -u git://git.toradex.com/toradex-manifest.git -b refs/tags/7.3.0 -m tdxref/default.xml repo sync
This will fetch all the updated layers for BSP 7.3.0, including the fix you need.
-
Alternatively, use the latest HEAD (if you want the latest fixes in the 7.x.y branch):
repo init -u git://git.toradex.com/toradex-manifest.git -b scarthgap-7.x.y -m tdxref/default.xml repo sync
This tracks the latest changes in the 7.x.y branch.
-
Re-source the environment in your build workspace:
. export
-
If you have local changes, you may encounter merge conflicts during sync which you’ll need to resolve.
Resources and Detailed Steps:
Once updated, rebuild your image as usual. This will pick up the meta-freescale and other changes that include the fix for the VPU encoding issue.
If you need more details on the changes, see:
Let me know if you have any questions or run into trouble updating.
Best regards,
Toradex AI Assistant.