From: Thomas Petazzoni Date: Sun, 21 Apr 2019 12:40:47 +0000 (+0200) Subject: configs/atmel_sama5d27_som1_ek_mmc_dev: increase rootfs image size X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce751fad37b78bb658ea6532bee3b49ea523aa73;p=buildroot.git configs/atmel_sama5d27_som1_ek_mmc_dev: increase rootfs image size The default rootfs image size is too small, causing the following build failure: Copying files into the device: __populate_fs: Could not allocate block in ext2 filesystem while writing file "udevd" mkfs.ext4: Could not allocate block in ext2 filesystem while populating file system *** Maybe you need to increase the filesystem size (BR2_TARGET_ROOTFS_EXT2_SIZE) So we increase it to 120 MB. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/199339415 Signed-off-by: Thomas Petazzoni --- diff --git a/configs/atmel_sama5d27_som1_ek_mmc_dev_defconfig b/configs/atmel_sama5d27_som1_ek_mmc_dev_defconfig index 9985b64727..1ae4b853da 100644 --- a/configs/atmel_sama5d27_som1_ek_mmc_dev_defconfig +++ b/configs/atmel_sama5d27_som1_ek_mmc_dev_defconfig @@ -67,6 +67,7 @@ BR2_PACKAGE_HTOP=y BR2_PACKAGE_VIM=y BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y +BR2_TARGET_ROOTFS_EXT2_SIZE="120M" BR2_TARGET_AT91BOOTSTRAP3=y BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT=y BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_REPO_URL="https://github.com/linux4sam/at91bootstrap.git"