Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - U-boot error with QNX 6.6.0: (3 Items)
   
U-boot error with QNX 6.6.0  
Hi guys,
 
I am trying to load my ifs-mx6q-sabrelite.raw file into the freescale board through u-boot, but I get this error all the
 time:
 
U-Boot > boot   
switch to partitions #0, OK
mmc1 is current device
** Unrecognized filesystem type **
## Starting application at 0x10800000 ..
 
I am trying to get the kernel I built for QNX 6.6.0 from the microSD:
 
U-Boot > setenv loadaddr '0x10800000'
U-Boot >  setenv bootcmd_microsd 'mmc dev 1; fatload mmc 1:1 ${loadaddr} ifs-mx6q-sabrelite.raw; go ${loadaddr}'
U-Boot > setenv bootcmd "run bootcmd_microsd"
U-Boot > saveenv
 
But when I boot the board, I get the above error. The SD card is formatted in FAT32 and it has only that file. Any ideas
?
 
Thanks in advance!
Re: U-boot error with QNX 6.6.0  
You should be able to list the files on the SD card from the uboot CLI
mmcinfo     should list info about the devices on the mmc interface
fatls mmc 1   should list all the files on the mmc device number 1 if that is the correct device

You should then be able to enter your boot commands one at time at using uboot CLI 
Once you have successfully booted the board using the CLI one command at a time, you should then be able to use the 
bootcmd to script the boot sequence. 
Re: U-boot error with QNX 6.6.0  
Hi Dave,

You response helped me to fix the problem

Much appreciated!
Thanks,
Victor.