diff options
author | 2016-05-07 11:32:18 -0300 | |
---|---|---|
committer | 2016-05-08 15:01:52 +0200 | |
commit | 2f37ef48e82e3ba75fdc5e800c90e10e848983a6 (patch) | |
tree | 0b8125d81164f53db806c18b3e251c1257944967 | |
parent | abfaf47e4c4054cac9e8869f43ddf77c28fbb588 (diff) | |
download | buildroot-2f37ef48e82e3ba75fdc5e800c90e10e848983a6.tar.gz buildroot-2f37ef48e82e3ba75fdc5e800c90e10e848983a6.tar.bz2 |
configs/imx6ulevk: Use ext4 as filesystem type
Extend the filesystem type to ext4.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | board/freescale/imx6ulevk/genimage.cfg | 4 | ||||
-rw-r--r-- | configs/freescale_imx6ulevk_defconfig | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/board/freescale/imx6ulevk/genimage.cfg b/board/freescale/imx6ulevk/genimage.cfg index 36ede1c3ac..b58193ae73 100644 --- a/board/freescale/imx6ulevk/genimage.cfg +++ b/board/freescale/imx6ulevk/genimage.cfg @@ -4,7 +4,7 @@ # * the microSD card must have 1 kB free space at the beginning, # * U-Boot is dumped as is, # * a FAT partition at offset 8 MB is containing zImage and dtbs, -# * a single root filesystem partition is required (Ext2 in this case). +# * a single root filesystem partition is required (Ext4 in this case). # image boot.vfat { @@ -36,6 +36,6 @@ image sdcard.img { partition rootfs { partition-type = 0x83 - image = "rootfs.ext2" + image = "rootfs.ext4" } } diff --git a/configs/freescale_imx6ulevk_defconfig b/configs/freescale_imx6ulevk_defconfig index b8a1f867b4..fbb420e4c9 100644 --- a/configs/freescale_imx6ulevk_defconfig +++ b/configs/freescale_imx6ulevk_defconfig @@ -33,3 +33,4 @@ BR2_PACKAGE_HOST_MTOOLS=y # filesystem / image BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/imx6ulevk/post-image.sh" BR2_TARGET_ROOTFS_EXT2=y +BR2_TARGET_ROOTFS_EXT2_4=y |