Quote:
I made more attempts to boot from the SD, using different cards, different dd options, but still no luck. Is it possible to get an "how to" or something so i can be sure i'm not doing a mistake ? thanks.
You just need a ~2GB or bigger SD card, dd the image to the card (uncompress it on the fly or uncompress it first, your choice) using simple dd (if, of) and then boot the Efika from cold with the SD card inserted into the big SD card slot.
It will boot from the SD card, there is really little else to it. It was so simple I didn't think it needed documentation (which is now above) and nobody else had any problems.
If you want to grab flasher, modules, boot and karmic archives from Platform Support it will build a card from scratch. You will need to extract the "flasher" archive and then edit the script manually to make sure the files and filenames are in the right place, but it really is as simple as creating an MBR, partitioning, formatting, copying a couple tarballs out and synchronising the filesystem before giving you the finished SD card.
If you would like to do it manually - grab the "boot" archive:
this is all under sudo
Code:
parted /dev/sdcard
mklabel msdos
mkpart primary fat 0 32M
mkpart primary ext2 32M 100%
quit
mkfs.vfat /dev/sdcard1
mkfs.ext4 /dev/sdcard2
mount /dev/sdcard2 /mnt
mkdir -p /mnt/boot
mkdir -p /mnt/lib/modules
mount /dev/sdcard1 /mnt/boot
tar --lzma -xf boot.tar.lzma -C /mnt/boot
tar --lzma -xf modules.tar.lzma -C /mnt
sync
unmount /mnt/boot /mnt
Or something to that effect. As long as "type_id.bin" and "uImage" exist on the FIRST fat formatted partition of the SD card, the Efika MX will boot from that kernel (and try and mount the second partition as rootfs).
Quote:
and i ask it again, is it possible to access uboot in graphical mode ?
No.