source: rtems/testsuites/samples/minimum/init.c @ c2565894

4.104.114.84.95
Last change on this file since c2565894 was 2dae3244, checked in by Joel Sherrill <joel.sherrill@…>, on 03/26/07 at 22:19:59

2007-03-26 Joel Sherrill <joel@…>

PR 1230/tests

  • minimum/init.c: Minimum should not configure console driver.
  • Property mode set to 100644
File size: 616 bytes
Line 
1/*  Minimum Size Application Initialization
2 *
3 *  COPYRIGHT (c) 1989-2007.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *  $Id$
11 */
12
13#include <bsp.h>
14
15rtems_task Init(
16  rtems_task_argument ignored
17)
18{
19}
20
21/* configuration information */
22
23#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
24#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
25#define CONFIGURE_MAXIMUM_TASKS 1
26
27#define CONFIGURE_INIT
28
29#include <rtems/confdefs.h>
30
31/* global variables */
Note: See TracBrowser for help on using the repository browser.