Add rtems_board_support_package()

This commit is contained in:
Sebastian Huber
2019-01-31 14:45:17 +01:00
parent da4ca4d184
commit 20d472d3d7
3 changed files with 14 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
* http://www.rtems.org/license/LICENSE.
*/
#include <rtems/version.h>
#include <rtems/system.h>
#include <bspopts.h>
@@ -27,3 +28,8 @@
const char _RTEMS_version[] =
"rtems-" RTEMS_VERSION " (" CPU_NAME "/" CPU_MODEL_NAME "/"
RTEMS_XSTRING( RTEMS_BSP ) ")";
const char *rtems_board_support_package( void )
{
return RTEMS_XSTRING( RTEMS_BSP );
}