2000-11-01 Joel Sherrill <joel@OARcorp.com>

* src/imfs/Makefile.am, src/imfs/deviceio.c, src/imfs/imfs_chown.c,
	src/imfs/imfs_config.c, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c,
	src/imfs/imfs_directory.c, src/imfs/imfs_eval.c, src/imfs/imfs_fchmod.c,
	src/imfs/imfs_free.c, src/imfs/imfs_fsunmount.c, src/imfs/imfs_gtkn.c,
	src/imfs/imfs_init.c, src/imfs/imfs_initsupp.c, src/imfs/imfs_link.c,
	src/imfs/imfs_mknod.c, src/imfs/imfs_mount.c, src/imfs/imfs_readlink.c,
	src/imfs/imfs_rmnod.c, src/imfs/imfs_stat.c, src/imfs/imfs_symlink.c,
	src/imfs/imfs_unixstub.c, src/imfs/imfs_unlink.c,
	src/imfs/imfs_unmount.c, src/imfs/imfs_utime.c, src/imfs/ioman.c,
	src/imfs/memfile.c, src/imfs/miniimfs_init.c:
	assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved
	from libc to lib/include/rtems and now must be referenced as
	<rtems/XXX.h>.  Now we do not have to reach up and over to
	libc to pick them up.
This commit is contained in:
Joel Sherrill
2000-11-01 21:02:46 +00:00
parent 974d6ad83c
commit c058578355
87 changed files with 135 additions and 84 deletions
+17
View File
@@ -1,3 +1,20 @@
2000-11-01 Joel Sherrill <joel@OARcorp.com>
* src/imfs/Makefile.am, src/imfs/deviceio.c, src/imfs/imfs_chown.c,
src/imfs/imfs_config.c, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c,
src/imfs/imfs_directory.c, src/imfs/imfs_eval.c, src/imfs/imfs_fchmod.c,
src/imfs/imfs_free.c, src/imfs/imfs_fsunmount.c, src/imfs/imfs_gtkn.c,
src/imfs/imfs_init.c, src/imfs/imfs_initsupp.c, src/imfs/imfs_link.c,
src/imfs/imfs_mknod.c, src/imfs/imfs_mount.c, src/imfs/imfs_readlink.c,
src/imfs/imfs_rmnod.c, src/imfs/imfs_stat.c, src/imfs/imfs_symlink.c,
src/imfs/imfs_unixstub.c, src/imfs/imfs_unlink.c,
src/imfs/imfs_unmount.c, src/imfs/imfs_utime.c, src/imfs/ioman.c,
src/imfs/memfile.c, src/imfs/miniimfs_init.c:
assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved
from libc to lib/include/rtems and now must be referenced as
<rtems/XXX.h>. Now we do not have to reach up and over to
libc to pick them up.
2000-10-24 Joel Sherrill <joel@OARcorp.com>
* src/imfs/imfs_config.c: New file containing IMFS configuration
+1 -1
View File
@@ -63,7 +63,7 @@ OBJS = $(C_O_FILES)
# Add local stuff here using +=
#
AM_CFLAGS += $(LIBC_DEFINES) -I $(top_srcdir)/../lib/libc
AM_CFLAGS += $(LIBC_DEFINES)
all-local: ${ARCH} $(LIB)
+1 -1
View File
@@ -16,7 +16,7 @@
#include <rtems.h>
#include <rtems/libio.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
+1 -1
View File
@@ -15,7 +15,7 @@
*/
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
int IMFS_chown(
+1 -1
View File
@@ -10,7 +10,7 @@
*/
#include <rtems.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
/* XXX this structure should use real constants */
+1 -1
View File
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <string.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
IMFS_jnode_t *IMFS_create_node(
rtems_filesystem_location_info_t *parent_loc,
+1 -1
View File
@@ -22,7 +22,7 @@
#include <sys/stat.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
/*
* IMFS_types
+1 -1
View File
@@ -23,7 +23,7 @@
#include <dirent.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
/*
* imfs_dir_open
+1 -1
View File
@@ -20,7 +20,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#define RTEMS_LIBIO_PERMS_RX (RTEMS_LIBIO_PERMS_SEARCH | RTEMS_LIBIO_PERMS_READ)
#define RTEMS_LIBIO_PERMS_WX (RTEMS_LIBIO_PERMS_SEARCH | RTEMS_LIBIO_PERMS_WRITE)
+1 -1
View File
@@ -13,7 +13,7 @@
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
int IMFS_fchmod(
+1 -1
View File
@@ -14,7 +14,7 @@
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
/*
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -16,7 +16,7 @@
#include <stdlib.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
IMFS_token_types IMFS_get_token(
const char *path,
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -17,7 +17,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_link(
rtems_filesystem_location_info_t *to_loc, /* IN */
+1 -1
View File
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_mknod(
const char *token, /* IN */
+1 -1
View File
@@ -21,7 +21,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_mount(
rtems_filesystem_mount_table_entry_t *mt_entry
+1 -1
View File
@@ -16,7 +16,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_readlink(
rtems_filesystem_location_info_t *loc,
+1 -1
View File
@@ -16,7 +16,7 @@
#include <rtems.h>
#include <rtems/libio.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
+1 -1
View File
@@ -15,7 +15,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_stat(
rtems_filesystem_location_info_t *loc,
+1 -1
View File
@@ -17,7 +17,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_symlink(
rtems_filesystem_location_info_t *parent_loc,
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#include <stdio.h>
+1 -1
View File
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_unlink(
rtems_filesystem_location_info_t *loc /* IN */
+1 -1
View File
@@ -22,7 +22,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_unmount(
rtems_filesystem_mount_table_entry_t *mt_entry
+1 -1
View File
@@ -17,7 +17,7 @@
#include <errno.h>
#include <sys/time.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
int IMFS_utime(
+1 -1
View File
@@ -22,7 +22,7 @@
#include <assert.h>
#include <rtems.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
#if defined(__linux__)
+1 -1
View File
@@ -24,7 +24,7 @@
#include <rtems.h>
#include <rtems/libio.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#define MEMFILE_STATIC
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+17
View File
@@ -1,3 +1,20 @@
2000-11-01 Joel Sherrill <joel@OARcorp.com>
* src/imfs/Makefile.am, src/imfs/deviceio.c, src/imfs/imfs_chown.c,
src/imfs/imfs_config.c, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c,
src/imfs/imfs_directory.c, src/imfs/imfs_eval.c, src/imfs/imfs_fchmod.c,
src/imfs/imfs_free.c, src/imfs/imfs_fsunmount.c, src/imfs/imfs_gtkn.c,
src/imfs/imfs_init.c, src/imfs/imfs_initsupp.c, src/imfs/imfs_link.c,
src/imfs/imfs_mknod.c, src/imfs/imfs_mount.c, src/imfs/imfs_readlink.c,
src/imfs/imfs_rmnod.c, src/imfs/imfs_stat.c, src/imfs/imfs_symlink.c,
src/imfs/imfs_unixstub.c, src/imfs/imfs_unlink.c,
src/imfs/imfs_unmount.c, src/imfs/imfs_utime.c, src/imfs/ioman.c,
src/imfs/memfile.c, src/imfs/miniimfs_init.c:
assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved
from libc to lib/include/rtems and now must be referenced as
<rtems/XXX.h>. Now we do not have to reach up and over to
libc to pick them up.
2000-10-24 Joel Sherrill <joel@OARcorp.com>
* src/imfs/imfs_config.c: New file containing IMFS configuration
+1 -1
View File
@@ -63,7 +63,7 @@ OBJS = $(C_O_FILES)
# Add local stuff here using +=
#
AM_CFLAGS += $(LIBC_DEFINES) -I $(top_srcdir)/../lib/libc
AM_CFLAGS += $(LIBC_DEFINES)
all-local: ${ARCH} $(LIB)
+1 -1
View File
@@ -16,7 +16,7 @@
#include <rtems.h>
#include <rtems/libio.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
+1 -1
View File
@@ -15,7 +15,7 @@
*/
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
int IMFS_chown(
+1 -1
View File
@@ -10,7 +10,7 @@
*/
#include <rtems.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
/* XXX this structure should use real constants */
+1 -1
View File
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <string.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
IMFS_jnode_t *IMFS_create_node(
rtems_filesystem_location_info_t *parent_loc,
+1 -1
View File
@@ -22,7 +22,7 @@
#include <sys/stat.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
/*
* IMFS_types
+1 -1
View File
@@ -23,7 +23,7 @@
#include <dirent.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
/*
* imfs_dir_open
+1 -1
View File
@@ -20,7 +20,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#define RTEMS_LIBIO_PERMS_RX (RTEMS_LIBIO_PERMS_SEARCH | RTEMS_LIBIO_PERMS_READ)
#define RTEMS_LIBIO_PERMS_WX (RTEMS_LIBIO_PERMS_SEARCH | RTEMS_LIBIO_PERMS_WRITE)
+1 -1
View File
@@ -13,7 +13,7 @@
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
int IMFS_fchmod(
+1 -1
View File
@@ -14,7 +14,7 @@
#include <errno.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
/*
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -16,7 +16,7 @@
#include <stdlib.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
IMFS_token_types IMFS_get_token(
const char *path,
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -19,7 +19,7 @@
#include <assert.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
#if defined(IMFS_DEBUG)
#include <stdio.h>
+1 -1
View File
@@ -17,7 +17,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_link(
rtems_filesystem_location_info_t *to_loc, /* IN */
+1 -1
View File
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_mknod(
const char *token, /* IN */
+1 -1
View File
@@ -21,7 +21,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_mount(
rtems_filesystem_mount_table_entry_t *mt_entry
+1 -1
View File
@@ -16,7 +16,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_readlink(
rtems_filesystem_location_info_t *loc,
+1 -1
View File
@@ -16,7 +16,7 @@
#include <rtems.h>
#include <rtems/libio.h>
#include "libio_.h"
#include <rtems/libio_.h>
#include "imfs.h"
+1 -1
View File
@@ -15,7 +15,7 @@
#include <errno.h>
#include "imfs.h"
#include "libio_.h"
#include <rtems/libio_.h>
int IMFS_stat(
rtems_filesystem_location_info_t *loc,

Some files were not shown because too many files have changed in this diff Show More