From c233a0e4478f8489fcb56eea76fcc29054fa4d72 Mon Sep 17 00:00:00 2001 From: Andreas Kurth Date: Fri, 14 Sep 2018 07:40:33 +0200 Subject: [PATCH] README.md: Replace FAT by ext2 for storage partition --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 532f52f..e51f964 100644 --- a/README.md +++ b/README.md @@ -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