Hello
I’m trying to mount an ext4 formatted SD Card and I get:
mount: unknown filesystem type 'ext4'
And sure enough ext4 is not supported
# cat /proc/filesystems
nodev sysfs
nodev rootfs
nodev ramfs
nodev bdev
nodev proc
nodev cgroup
nodev cpuset
nodev tmpfs
nodev devtmpfs
nodev debugfs
nodev securityfs
nodev sockfs
nodev pipefs
nodev rpc_pipefs
nodev configfs
nodev devpts
squashfs
vfat
nodev nfs
nodev nfs4
nodev overlay
nodev mqueue
nodev smackfs
nodev mtd_inodefs
nodev ubifs
nodev functionfs
It is present in /etc/filesystems
however
# cat /etc/filesystems
ext4
ext3
ext2
vfat
fat
btrfs
minix
*
How do I enable Ext4 filesystem support on a WP76xx module?
So far I’ve tried adding it with IMAGE_FSTYPES += " ext4"
in my image.inc
file but doesn’t appear to do anything.
Thanks!