Replies: 2 comments 11 replies
-
@rsym3000 I think this error can occur when the resulting xml file is invalid, including when the |
Beta Was this translation helpful? Give feedback.
-
Thanks. I see that my disk size declaration is not updating for some reason. I see instructions for defining TEGRA_EXTERNAL_DEVICE_SECTORS, which I defined in my tegra-storage-layout_35.6.0.bb file. Are these instructions still relevant? |
Beta Was this translation helpful? Give feedback.
-
Hi all, I am new to openembedded so I have a basic question.
I am using scarthgap-l4t-r35.x and I've modded the core-image-minimal image to support an Orin NX 8GB on a custom carrier board, using nvme external storage. The image was flashing and working with no problems, but then I went to add a partition to our flash image and I hit a wall.
I modified the tegra-storage-layout_35.6.0.bb recipe to include the following:
<partition name="Docker" type="data"> <allocation_policy> sequential </allocation_policy> <filesystem_type> basic </filesystem_type> <size> 275000000000 </size> <file_system_attribute> 0 </file_system_attribute> <allocation_attribute> 0x8 </allocation_attribute> <align_boundary> 16384 </align_boundary> <percent_reserved> 0 </percent_reserved> <description> docker partition </description> </partition> <partition name="Logs" type="data"> <allocation_policy> sequential </allocation_policy> <filesystem_type> basic </filesystem_type> <size> 75000000000 </size> <file_system_attribute> 0 </file_system_attribute> <allocation_attribute> 0x8 </allocation_attribute> <align_boundary> 16384 </align_boundary> <percent_reserved> 0 </percent_reserved> <description> log partition </description> </partition>
I can see in my build directory that this change is making its way into the flash-nvme xml file that is used during the flash process, but flashing fails:
It seems something else is needed to make the changes stick. I see stuff about wic, etc. but I don't see anything in my build defined for WKS_FILE, and IMAGE_FSTYPE is 'tegraflash'. What am I missing here? Thanks for your time. Cheers
Beta Was this translation helpful? Give feedback.
All reactions