bsp/motorola_powerp: Print RTEMS_VERSION from the bootloader

Close #4234
This commit is contained in:
Chris Johns
2020-10-13 20:14:21 -10:00
parent 6d9843e189
commit 388bd8054c

View File

@@ -23,6 +23,8 @@
#include <rtems/bspIo.h>
#include <bsp.h>
#include <rtems.h>
/* to align the pointer to the (next) page boundary */
#define PAGE_ALIGN(addr) (((addr) + PAGE_MASK) & ~PAGE_MASK)
@@ -401,7 +403,7 @@ setup_hw(void)
}
#endif
printk("\nRTEMS 4.x/PPC load: ");
printk("\nRTEMS " RTEMS_VERSION "/PPC load: ");
timer = 0;
cp = bd->cmd_line+strlen(bd->cmd_line);
while (timer++ < 5*1000) {