#include #include #include #define AUTO_BOOT 0 void bsp_cleanup(void) { #if AUTO_BOOT /* Till Straumann for SVGM */ void rtemsReboot(); rtemsReboot(); #else /* Kate Feng for the MVME5500 */ printk("\nPrinting a stack trace for your convenience :-)\n"); CPU_print_stack(); printk("RTEMS terminated; Boot manually or turn on AUTO_BOOT.\n"); #endif }