2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>

* bspcmdline01/init.c: Do not violate visibility.
This commit is contained in:
Joel Sherrill
2009-08-07 00:31:05 +00:00
parent f32c036de0
commit 248db2171f
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* bspcmdline01/init.c: Do not violate visibility.
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* bspcmdline01/bspcmdline01.scn, bspcmdline01/init.c: Add rtems_ as

View File

@@ -114,13 +114,16 @@ rtems_task Init(
rtems_task_argument ignored
)
{
const char *bspcmdline;
puts( "\n\n*** TEST OF PARSING BOOT COMMAND STRING ***" );
if ( rtems_bsp_cmdline_get() ) {
bspcmdline = rtems_bsp_cmdline_get();
if ( bspcmdline ) {
printf(
"BSP has a boot command line:\n"
"%s\n",
bsp_boot_cmdline
bspcmdline
);
} else {
puts( "BSP does not have a boot command line" );