diff options
author | Joshua Henderson <joshua.henderson@microchip.com> | 2018-04-06 13:57:45 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-07 09:05:26 +0200 |
commit | c15873e020dd48ea71f55ac36a0e6639add223b5 (patch) | |
tree | e66c5629c5fc98895f33146f392bb84b9d96ed05 | |
parent | 3f76d07548f707cbaa2231007f7b77d52a2f998d (diff) | |
download | buildroot-c15873e020dd48ea71f55ac36a0e6639add223b5.tar.gz buildroot-c15873e020dd48ea71f55ac36a0e6639add223b5.zip |
configs/at91sam9g20dfc: add ubifs target filesystem
This is a required component to complete the configuration. It also makes sense
to add ubifs so that this board can be flashed with the board/atmel/flasher.sh
script.
Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | configs/at91sam9g20dfc_defconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/at91sam9g20dfc_defconfig b/configs/at91sam9g20dfc_defconfig index 0824868f1c..7511c96fe9 100644 --- a/configs/at91sam9g20dfc_defconfig +++ b/configs/at91sam9g20dfc_defconfig @@ -15,6 +15,13 @@ BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91sam9g20ek" # Filesystem BR2_TARGET_ROOTFS_TAR=y +BR2_TARGET_ROOTFS_UBI=y +BR2_TARGET_ROOTFS_UBI_PEBSIZE=0x20000 +BR2_TARGET_ROOTFS_UBI_SUBSIZE=512 +BR2_TARGET_ROOTFS_UBIFS=y +BR2_TARGET_ROOTFS_UBIFS_LEBSIZE=0x1f800 +BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE=0x800 +BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT=2047 # Bootloaders BR2_TARGET_AT91BOOTSTRAP3=y |