Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #16 from pulp-platform/storage-fs
Browse files Browse the repository at this point in the history
Replace FAT by ext2 for storage partition
  • Loading branch information
alessandrocapotondi committed Sep 14, 2018
2 parents c5f3053 + c233a0e commit 7a7b052
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,13 @@ To write the partition table to the SD card and exit `fdisk`, type `w`.
Next, execute
```
sudo mkfs -t vfat -n ZYNQ_BOOT /dev/sdX1
sudo mkfs -t vfat -n STORAGE /dev/sdX2
```
to create a new FAT filesystem on both partitions.
to create a new FAT filesystem for the boot partition, and
```
sudo mkfs -t ext2 -L STORAGE /dev/sdX2
```
to create an ext2 filesystem for storage. (Do not use FAT for storage because it does not support
symlinks, which are needed to correctly install libraries.)

### Load boot images to SD card

Expand Down

0 comments on commit 7a7b052

Please sign in to comment.