Re: [PATCH] Add rtems_board_support_package()

2019-03-18 Thread Chris Johns
On 14/3/19 12:41 am, Sebastian Huber wrote: > On 13/03/2019 14:39, Joel Sherrill wrote: >> On Wed, Mar 13, 2019 at 2:38 AM Sebastian Huber >> > > wrote: >> >>     What about this patch? The placement of rtems_board_support_package() >>     into is a bit

Re: [PATCH] Add rtems_board_support_package()

2019-03-13 Thread Sebastian Huber
On 13/03/2019 14:39, Joel Sherrill wrote: On Wed, Mar 13, 2019 at 2:38 AM Sebastian Huber > wrote: What about this patch? The placement of rtems_board_support_package() into is a bit odd, but I think it fits into the scope of these

Re: [PATCH] Add rtems_board_support_package()

2019-03-13 Thread Joel Sherrill
On Wed, Mar 13, 2019 at 2:38 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > What about this patch? The placement of rtems_board_support_package() > into is a bit odd, but I think it fits into the scope > of these functions. You normally include if you want > to print some

Re: [PATCH] Add rtems_board_support_package()

2019-03-13 Thread Sebastian Huber
What about this patch? The placement of rtems_board_support_package() into is a bit odd, but I think it fits into the scope of these functions. You normally include if you want to print some system information. Another place would be right after rtems_get_version_string(). On 01/02/2019

[PATCH] Add rtems_board_support_package()

2019-01-31 Thread Sebastian Huber
--- bsps/shared/rtems-version.c | 6 ++ cpukit/include/rtems/version.h| 7 +++ testsuites/sptests/spversion01/init.c | 1 + 3 files changed, 14 insertions(+) diff --git a/bsps/shared/rtems-version.c b/bsps/shared/rtems-version.c index 16f74070bc..99b98966e6 100644 ---