summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/dummy/default-configuration.c
blob: 5b6da0402f65e8e13548636fa71d452f3aafa9e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 *  Default configuration file
 *
 *  COPYRIGHT (c) 1989-2008.
 *  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.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>

#include <rtems.h>

int main( int argc, char **argv );

static void Init( rtems_task_argument arg )
{
  const char *boot_cmdline = *((const char **) arg);
  char       *cmdline = NULL;
  int         argc = 0;
  char      **argv = NULL;
  int         result;

  if ( boot_cmdline != NULL ) {
    size_t n = strlen( boot_cmdline ) + 1;

    cmdline = malloc( n );
    if ( cmdline != NULL ) {
      char* command;

      memcpy( cmdline, boot_cmdline, n);

      command = cmdline;

      /*
       * Break the line up into arguments with "" being ignored.
       */
      while ( true ) {
        command = strtok( command, " \t\r\n" );
        if ( command == NULL )
          break;

        ++argc;
        command = '\0';
      }

      /*
       * If there are arguments, allocate enough memory for the argv
       * array to be passed into main().
       *
       * NOTE: If argc is 0, then argv will be NULL.
       */
      argv = calloc( argc, sizeof( *argv ) );
      if ( argv != NULL ) {
        int a;

        command = cmdline;
        argv[ 0 ] = command;

        for ( a = 1; a < argc; ++a ) {
          command += strlen( command ) + 1;
          argv[ a ] = command;
        }
      } else {
        argc = 0;
      }
    }
  }

  result = main( argc, argv );

  free( argv );
  free( cmdline );

  exit( result );
}

/* configuration information */

/* This is enough to get a basic main() up. */
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_UNIFIED_WORK_AREAS
#define CONFIGURE_STACK_CHECKER_ENABLED

/* on smaller architectures lower the number or resources */
#if defined(__m32c__)
  #define CONFIGURE_MAXIMUM_TASKS 3
#else
  #define CONFIGURE_UNLIMITED_OBJECTS
  #define CONFIGURE_MAXIMUM_USER_EXTENSIONS 8
  #define CONFIGURE_MAXIMUM_DRIVERS 16
  #define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 32
#endif

/* Include basic device drivers needed to call delays */
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER

#define CONFIGURE_MAXIMUM_PROCESSORS 32

#define CONFIGURE_DISABLE_BSP_SETTINGS

#define CONFIGURE_INIT

#include <rtems/confdefs.h>