diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2018-06-29 12:23:10 +0300 |
|---|---|---|
| committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2018-07-08 00:32:06 +0200 |
| commit | e26a71d1a96aefcc6a63051207b26ea4282afb10 (patch) | |
| tree | 6bf122aed9be6d600a185dd6dc5d72ba6fb25a8a | |
| parent | 0fe0c50d3683be4975a4551ac183707692b11215 (diff) | |
| download | buildroot-e26a71d1a96aefcc6a63051207b26ea4282afb10.tar.gz buildroot-e26a71d1a96aefcc6a63051207b26ea4282afb10.zip | |
configs/raspberrypi3_defconfig: increase filesystem size
Increase the filesystem size for raspberrypi3 by setting
BR2_TARGET_ROOTFS_EXT2_SIZE to "120M". The filesystem for
raspberrypi3_64 has the same size. The size is so large because the
kernel config enables many many modules.
Fixes:
Copying files into the device: __populate_fs: Could not allocate block in ext2 filesystem while writing file "services"
mkfs.ext4: Could not allocate block in ext2 filesystem while populating file system
This error is not reproducible, it seems to depend on e.g. directory
ordering.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
| -rw-r--r-- | configs/raspberrypi3_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/raspberrypi3_defconfig b/configs/raspberrypi3_defconfig index 856f321433..0ef9afeecf 100644 --- a/configs/raspberrypi3_defconfig +++ b/configs/raspberrypi3_defconfig @@ -28,6 +28,7 @@ BR2_PACKAGE_HOST_MTOOLS=y # Filesystem / image BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y +BR2_TARGET_ROOTFS_EXT2_SIZE="120M" # BR2_TARGET_ROOTFS_TAR is not set BR2_ROOTFS_POST_BUILD_SCRIPT="board/raspberrypi3/post-build.sh" BR2_ROOTFS_POST_IMAGE_SCRIPT="board/raspberrypi3/post-image.sh" |

