I am posting following steps which you can use to get ext4 on your Meego. You have to configure the Meego by using the following. You have to modify the following file.To
Code:
EXTRAVERSION=.5-24.1
Now you have to copy official config by using the following command.
Code:
cp /boot/config-2.6.33.5.24-1 .config
make oldconfig
Next step is to enable ext4 in the file system as module by using the following one.Now prepare for compilation
Code:
make prepare
make modules_prepare
Now you have to compile the module by using the following one
Code:
make M=fs/jbd2
make M=fs/ext4
Now it is ready to use and see whether it is working or not.
Code:
insmod fs/jbd2/jbd2.ko
insmod fs/ext4/ext4.ko
If it is correct then install the same
Code:
mkdir -p /lib/modules/2.6.33.5-24.1-netbook/kernel/fs/jbd2
mkdir -p /lib/modules/2.6.33.5-24.1-netbook/kernel/fs/ext4
cp fs/jbd2/jbd2.ko /lib/modules/2.6.33.5-24.1-netbook/kernel/fs/jbd2/
cp fs/ext4/ext4.ko /lib/modules/2.6.33.5-24.1-netbook/kernel/fs/ext4/
depmod
Now you can load the module by using the following command.Well if you are having any query regarding this particular solution then feel free to ask the same. I am hoping that it will help to meet your requirement.
Bookmarks