2001-01-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.in: Add src/imfs/config.h
	* src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h
	* src/imfs/.cvsignore: Add config.h and stamp-h
	* src/imfs/*.c: Add config.h support.
This commit is contained in:
Joel Sherrill
2001-01-22 14:05:14 +00:00
parent 227ae749dc
commit d6b1d73bc7
121 changed files with 493 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
2001-01-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Add src/imfs/config.h
* src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h
* src/imfs/.cvsignore: Add config.h and stamp-h
* src/imfs/*.c: Add config.h support.
2001-01-12 Jake Janovetz <janovetz@uiuc.edu>
* src/imfs/imfs.h, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c,

View File

@@ -1,2 +1,6 @@
Makefile
Makefile.in
config.h
config.h.in
stamp-h
stamp-h.in

View File

@@ -4,6 +4,8 @@
AUTOMAKE_OPTIONS = foreign 1.4
INCLUDES += -I.
LIBNAME = libimfs
LIB = ${ARCH}/${LIBNAME}.a

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/libio_.h>

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>
#include "imfs.h"

View File

@@ -9,6 +9,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio_.h>
#include "imfs.h"

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <string.h>
#include <fcntl.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <chain.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "imfs.h"
int IMFS_fcntl(

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "imfs.h"
int IMFS_fdatasync(

View File

@@ -12,6 +12,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <assert.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -1,3 +1,11 @@
/*
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
/**************************************************************************
* This file implements the "mount" procedure for tar-based IMFS
* extensions. The TAR is not actually mounted under the IMFS.

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

View File

@@ -18,6 +18,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/libio_.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <stdlib.h>

View File

@@ -19,6 +19,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <sys/time.h>

View File

@@ -12,7 +12,9 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>

View File

@@ -16,6 +16,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <assert.h>
#include <errno.h>

View File

@@ -17,6 +17,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <assert.h>
#include <errno.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -1,3 +1,10 @@
2001-01-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Add src/imfs/config.h
* src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h
* src/imfs/.cvsignore: Add config.h and stamp-h
* src/imfs/*.c: Add config.h support.
2001-01-12 Jake Janovetz <janovetz@uiuc.edu>
* src/imfs/imfs.h, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c,

View File

@@ -25,6 +25,7 @@ RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
AM_CONFIG_HEADER(src/imfs/config.h)
# Explicitly list all Makefiles here
AC_OUTPUT(

View File

@@ -1,2 +1,6 @@
Makefile
Makefile.in
config.h
config.h.in
stamp-h
stamp-h.in

View File

@@ -4,6 +4,8 @@
AUTOMAKE_OPTIONS = foreign 1.4
INCLUDES += -I.
LIBNAME = libimfs
LIB = ${ARCH}/${LIBNAME}.a

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/libio_.h>

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>
#include "imfs.h"

View File

@@ -9,6 +9,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio_.h>
#include "imfs.h"

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <string.h>
#include <fcntl.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <chain.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "imfs.h"
int IMFS_fcntl(

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "imfs.h"
int IMFS_fdatasync(

View File

@@ -12,6 +12,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <assert.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -1,3 +1,11 @@
/*
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
/**************************************************************************
* This file implements the "mount" procedure for tar-based IMFS
* extensions. The TAR is not actually mounted under the IMFS.

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

View File

@@ -18,6 +18,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/libio_.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -15,6 +15,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"
#include <rtems/libio_.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <stdlib.h>

View File

@@ -19,6 +19,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include "imfs.h"

View File

@@ -14,6 +14,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <sys/time.h>

View File

@@ -12,7 +12,9 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>

View File

@@ -16,6 +16,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <assert.h>
#include <errno.h>

View File

@@ -17,6 +17,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <assert.h>
#include <errno.h>

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h> /* for mkdir */
#include <fcntl.h>
#include <unistd.h>