source: rtems/cpukit/libmisc/dummy/dummy.c @ 7571a23

4.115
Last change on this file since 7571a23 was 7571a23, checked in by Sebastian Huber <sebastian.huber@…>, on 01/27/13 at 14:10:39

sapi: PR1911: Add CONFIGURE_DISABLE_BSP_SETTINGS

  • Property mode set to 100644
File size: 949 bytes
Line 
1/*
2 *  Dummy configuration file
3 *
4 *  COPYRIGHT (c) 1989-2008.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems.h>
17
18int main( int, char **, char **);
19
20/* configuration information */
21
22/* This is enough to get a basic main() up. */
23#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
24#define CONFIGURE_MAXIMUM_TASKS 10
25#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
26#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
27#define CONFIGURE_INIT_TASK_ENTRY_POINT   (void *)main
28
29/* Include basic device drivers needed to call delays */
30#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
31#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
32
33#define CONFIGURE_DISABLE_BSP_SETTINGS
34
35#define CONFIGURE_INIT
36
37#include <rtems/confdefs.h>
38
Note: See TracBrowser for help on using the repository browser.