Hello,
Is there a way to set up the partition on the jetson nano eMMC version so that the rootfs would be divided into /boot and then the rest of the fs?
I am new to this, but I know that the partitions are defined in the file, and the default APP looks like this:
<partition name="APP" type="data">
<allocation_policy> sequential </allocation_policy>
<filesystem_type> basic </filesystem_type>
<size> APPSIZE </size>
<allocation_attribute> 8 </allocation_attribute>
<unique_guid> APPUUID </unique_guid>
<filename> APPFILE </filename>
<description> **Required.** Contains the rootfs. This partition must be defined after
`primary_GPT` so it can be accessed as the fixed known special device
`/dev/mmcblk0p1`. </description>
</partition>
How can I achieve what I want? Is there such a way?
Thanks.