m5329 dBug

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

m5329 dBug

1,972 Views
BRUNONUNES
Contributor I

hi: I m going to build a standalone system but I had a problem: when I set , using  debug, the option set autoboot flash. I got this message: autoboot from flash not supported on this board. How can I solve this?
I found no jumper regarding this configuration.
Thanks
Labels (1)
0 Kudos
2 Replies

342 Views
UK_CF_FAE
NXP Employee
NXP Employee
Hi Brunonunes,
 
The source code for dBug contains a function auto_boot in main.c
 
#ifdef DBUG_AUTOBOOT_FLASH       
            cmd_gofrom_flash( NULL, NULL );
#else
            printf("Autoboot from flash not supported on this board\n");
#endif
 
Rebuild dBug with the right conditional define.
 
good luck,
 
Mark
0 Kudos

342 Views
mwaddel
Contributor I
This message is displayed when the DBUG_AUTOBOOT_FLASH
definition is not set in proj/m5329evb/src/config.h.

You may have an older version of dbug and you can download a
newer version from http://auslxsc01.mtwk.freescale.net/ppp/dbug-4.d.tar.gz

Another option is to use u-boot.  u-boot is has the autoboot
features.  M5329 support is in the main u-boot distribution.
0 Kudos