Hi,
I was building a image by LTIB and flash into microSD, but there is no any output on my screen.
The following is my step:
1. Using ubuntu virtual machine image offered by FreeScale imx53 QSB DVD.
2. run litb and change the settings
- imx25_stack -> imx5x
- u-boot : mx53_loco
others use the default value.
And I have the files:
<ltib>/rootfs/boot/u-boot.bin
<ltib>/rootfs/boot/uImage
<ltib>/rootfs.jffs2
3. mount jffs2
- modprobe mtdblock
- modprobe mtdram total_size=5120 erase_size=256
- dd if=rootfs.jffs2 of=/dev/mtdblock0
- mkdir jffs_dir
- mount -t jffs2 /dev/mtdblock0 jffs_dir
4. copy file to microSD, named /dev/sdb
- dd if=rootfs/boot/u-boot.bin of=/dev/sdb bs=512
- dd if=rootfs/boot/uImageof=/dev/sdb bs=512 seek=2048
partition:
- fdisk /dev/sdb
- u
- n
- p
- 1
- 8192
- <enter>
- w
copy rootfs.jffs2
- mount /dev/sdb /mnt/hgfs
- cd jffs_dir
- cp -rpa * /mnt/hgfs
- umount //mnt/hgfs
- eject /dev/sdb
Are any step is wrong? Please tell me, thanks.
Attachment is the image file I build.
Original Attachment has been moved to: 326-rootfs.jffs2