mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-27 16:05:39 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/libio.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#include "imfs.h"
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
int IMFS_chown(
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
*/
|
||||
|
||||
#include <rtems.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
/* XXX this structure should use real constants */
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
/*
|
||||
* IMFS_types
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <dirent.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
/*
|
||||
* imfs_dir_open
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
int IMFS_fchmod(
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
/*
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#if defined(IMFS_DEBUG)
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#if defined(IMFS_DEBUG)
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -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,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 */
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
int IMFS_mknod(
|
||||
const char *token, /* IN */
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/libio.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#include "imfs.h"
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
#include <errno.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
int IMFS_utime(
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include <rtems.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
#if defined(__linux__)
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include <rtems.h>
|
||||
#include <rtems/libio.h>
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#define MEMFILE_STATIC
|
||||
|
||||
|
||||
@@ -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,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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/libio.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#include "imfs.h"
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
int IMFS_chown(
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
*/
|
||||
|
||||
#include <rtems.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
/* XXX this structure should use real constants */
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
/*
|
||||
* IMFS_types
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <dirent.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
/*
|
||||
* imfs_dir_open
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
int IMFS_fchmod(
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
#include "imfs.h"
|
||||
|
||||
/*
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#if defined(IMFS_DEBUG)
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#if defined(IMFS_DEBUG)
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -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,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 */
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "imfs.h"
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
int IMFS_mknod(
|
||||
const char *token, /* IN */
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/libio.h>
|
||||
#include "libio_.h"
|
||||
#include <rtems/libio_.h>
|
||||
|
||||
#include "imfs.h"
|
||||
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user