mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @ingroup RTEMSImplClassic
|
|
*
|
|
* @brief This source file contains the implementation of
|
|
* rtems_board_support_package() and the definition of ::_RTEMS_version.
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 2003, Ralf Corsepius, Ulm, Germany.
|
|
* COPYRIGHT (c) 2003, On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#include <rtems/version.h>
|
|
#include <rtems/score/copyrt.h>
|
|
#include <rtems/score/cpu.h>
|
|
|
|
#include <bspopts.h>
|
|
|
|
#ifndef RTEMS_VERSION
|
|
#error "Missing RTEMS_VERSION"
|
|
#endif
|
|
#ifndef CPU_NAME
|
|
#error "Missing CPU_NAME"
|
|
#endif
|
|
#ifndef CPU_MODEL_NAME
|
|
#error "Missing CPU_MODEL_NAME"
|
|
#endif
|
|
#ifndef RTEMS_BSP
|
|
#error "Missing RTEMS_BSP"
|
|
#endif
|
|
|
|
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 );
|
|
}
|