[OE-core] [PATCH] image_types.bbclass: set 'filetype' ext4 feature

Enrico Scholz enrico.scholz at sigma-chemnitz.de
Wed Jun 26 12:10:25 UTC 2013


Generating filesystems with this flag allows more efficient directory
traversals because getdents() returns the filetype in 'd_type' which
allows to avoid an extra lstat() call.

Creating ext4 filesystems with 'mkfs.ext4' sets this flag by default
too.

Signed-off-by: Enrico Scholz <enrico.scholz at sigma-chemnitz.de>
---
 meta/classes/image_types.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 9146b21..c03d914 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -158,7 +158,7 @@ IMAGE_CMD_ext3 () {
 
 oe_mkext4fs () {
 	genext2fs -b $ROOTFS_SIZE -d ${IMAGE_ROOTFS} ${EXTRA_IMAGECMD} $1
-	tune2fs -O extents,uninit_bg,dir_index,has_journal $1
+	tune2fs -O extents,uninit_bg,dir_index,has_journal,filetype $1
 	e2fsck -yfDC0 $1 || chk=$?
 	case $chk in
 	0|1|2)
-- 
1.8.1.4




More information about the Openembedded-core mailing list