source: rtems/cpukit/libnetworking/rtems/mkrootfs.h @ b02f920f

4.115
Last change on this file since b02f920f was b02f920f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/14/10 at 06:08:50

2010-06-14 Ralf Corsépius <ralf.corsepius@…>

  • libnetworking/rtems/mkrootfs.h, posix/include/rtems/posix/pthread.h, score/include/rtems/score/coresem.h, score/include/rtems/score/priority.h, score/include/rtems/score/threadq.h, score/include/rtems/score/timestamp.h: Move 'extern "C"'.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file rtems/mkrootfs.h
3 *
4 * RTEMS Root FS creation support.
5 */
6
7/*
8  Copyright Cybertec Pty Ltd, 2000
9  All rights reserved Cybertec Pty Ltd, 2000
10
11  COPYRIGHT (c) 1989-1998.
12  On-Line Applications Research Corporation (OAR).
13
14  The license and distribution terms for this file may be
15  found in the file LICENSE in this distribution or at
16
17  http://www.rtems.com/license/LICENSE.
18
19  This software with is provided ``as is'' and with NO WARRANTY.
20
21  $Id$
22*/
23
24#ifndef _RTEMS_MKROOTFS_H
25#define _RTEMS_MKROOTFS_H
26
27#include <rtems.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/*
34 *  Appends the lines to the a file. Create the file
35 *  and builds the path if it does not exist.
36 */
37
38int
39rtems_rootfs_file_append (const char *file,
40                          mode_t     omode,
41                          const int  line_cnt,
42                          const char **lines);
43
44/*
45 *  Helper for bulding an /etc/hosts file.
46 */
47
48int
49rtems_rootfs_append_host_rec (unsigned long cip,
50                              const char    *cname,
51                              const char    *dname);
52
53/*
54 * Create a few common directories, plus a :
55 * /etc/passwd, /etc/group, /etc/host.conf, and
56 * /etc/hosts file.
57 */
58
59int
60rtems_create_root_fs ( void );
61
62#ifdef __cplusplus
63}
64#endif
65
66#endif
Note: See TracBrowser for help on using the repository browser.