Fortune favors the brave so I decided to proceed with the sd card conversion from ext3 to ext2.
I have a multiboot setup on my plug so I've got the backup nand boot to mess up with the sdcard.
So I removed the sdcard and booted from internal nand and inserted again the sdcard in th slot.
Mounted the 2nd partition (mmcblk0p2 with the rootfs "/" ) and check it out
user@debian:~$ sudo mount /dev/mmcblk0p2 /mnt/sdp2
user@debian:~$ df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
tmpfs tmpfs 256740 0 256740 0% /lib/init/rw
udev tmpfs 10240 144 10096 2% /dev
tmpfs tmpfs 256740 4 256736 1% /dev/shm
rootfs rootfs 471664 147828 318996 32% /
/dev/mmcblk0p2
ext3 7732856 479552 6860492 7% /mnt/sdp2
it's ext3!
unmounted it and run "
sudo tune2fs -O ^has_journal /dev/mmcblk0p2" to get rid of the journal
and after that "
sudo fsck -f /dev/mmcblk0p2" to check things out,
mounted again to check the fstype = ext2
and rebooted from the sdcard...cross fingers...
user@debian:~$ sudo fdisk -l
Disk /dev/mmcblk0: 8048 MB, 8048869376 bytes
4 heads, 16 sectors/track, 245632 cylinders
Units = cylinders of 64 * 512 = 32768 bytes
Disk identifier: 0xf3bf8b45
Device Boot Start End Blocks Id System
/dev/mmcblk0p1 1 123 3928 83 Linux
/dev/mmcblk0p2 124 245632 7856288 83 Linux
user@debian:~$ sudo tune2fs -O ^has_journal /dev/mmcblk0p2
tune2fs 1.41.9 (22-Aug-2009)
user@debian:~$ sudo fsck -f /dev/mmcblk0p2
fsck from util-linux-ng 2.16.2
e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
sheevaplug-rootf: 11749/491520 files (0.6% non-contiguous), 117945/1964072 blocks
user@debian:~$ sudo mount /dev/mmcblk0p2 /mnt/sdp2
user@debian:~$ df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
tmpfs tmpfs 256740 0 256740 0% /lib/init/rw
udev tmpfs 10240 144 10096 2% /dev
tmpfs tmpfs 256740 4 256736 1% /dev/shm
rootfs rootfs 471664 157716 309112 34% /
/dev/mmcblk0p2
ext2 7732856 348348 6991696 5% /mnt/sdp2
user@debian:~$ sudo shutdown -r now
The plug is working fine booting from the ext2 converted sdcard.
Edit: My"
dmesg" gives me "
VFS: Mounted root (ext2 filesystem) on device 179:2."