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

Commit

Permalink
Merge branch 'master' of github.com:pulp-platform/hero-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrocapotondi committed Sep 14, 2018
2 parents b92bb4f + 7a7b052 commit 45fbfdb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
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 45fbfdb

Please sign in to comment.