Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - IPL beagleboard-xm not booting: (1 Item)
   
IPL beagleboard-xm not booting  
I'm trying to create an IPL of my project QNX Neutrino but it does not start.

Image Address: 0x80100000

bsp name-TI-OMAP3530-Beagle-1.0.0.ifs size 3,129,384 bytes
ipl name-bsp-TI-OMAP3530-Beagle-1.0.0.bin size 3,142,048 bytes

Procedure I'm doing:

// Flashen des IPL
# mmc init

// temporären Speicherbereich löschen
// (schreibt 0x40000 Bytes 0xff ab Adresse 0x80200000
# mw.b 80200000 ff 40000

// IPL nach 0x80200000 kopieren
# fatload mmc 0 80200000 nand-ipl-omap3530beagle_fastboot .bin

// Flash löschen
# nand erase 0 40000
# nandecc hw

// IPL ins NAND-Flash schreiben
# nand write.i 80200000 0 40000

// IFS-Image schreiben
# mw.b 80200000 ff 600000
# fatload mmc 0 80200000 beagle.ifs
# nand erase 80000 600000
# nand write.i 80200000 80000 600000

I've never done this before, first time.