Custom partition

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.

Hi,

What is your use case? Why do you want to divide rootfs into /boot?
Please refer to the Partition Configuration — NVIDIA Jetson Linux Developer Guide
section for more detail.

Thanks

Hi!

I know that on Jetson Nano, disk encryption is not officially supported, but I want to try an alternative solution. For that, I need a non-encrypted partition to boot the Jetson and the rest of the rootfs I want to encrypt.

Thanks