From 4d3b1bb2544d3feeba89327b02247e116509608c Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 7 Feb 2005 13:16:15 +0000 Subject: 2005-02-07 Ralf Corsepius * include/rtems/tar.h: New. --- cpukit/ChangeLog | 4 ++++ cpukit/include/rtems/tar.h | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 cpukit/include/rtems/tar.h diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 625d2b70cc..738126366b 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2005-02-07 Ralf Corsepius + + * include/rtems/tar.h: New. + 2005-02-05 Ralf Corsepius * libfs/Makefile.am: Build libfs/src/imfs/imfs_load_tar.c. diff --git a/cpukit/include/rtems/tar.h b/cpukit/include/rtems/tar.h new file mode 100644 index 0000000000..4be7b90f64 --- /dev/null +++ b/cpukit/include/rtems/tar.h @@ -0,0 +1,53 @@ +/* + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + * + * $Id$ + */ + +/** @file rtems/tar.h + * Wrapper to to accomodate systems not providing (Cygwin). + */ + +#ifndef _RTEMS_TAR_H +#define _RTEMS_TAR_H + +#include + +#if RTEMS_USES_TAR_H +#include +#else +/* General definitions */ +#define TMAGIC "ustar" /* ustar plus null byte. */ +#define TMAGLEN 6 /* Length of the above. */ +#define TVERSION "00" /* 00 without a null byte. */ +#define TVERSLEN 2 /* Length of the above. */ + +/* Typeflag field definitions */ +#define REGTYPE '0' /* Regular file. */ +#define AREGTYPE '\0' /* Regular file. */ +#define LNKTYPE '1' /* Link. */ +#define SYMTYPE '2' /* Symbolic link. */ +#define CHRTYPE '3' /* Character special. */ +#define BLKTYPE '4' /* Block special. */ +#define DIRTYPE '5' /* Directory. */ +#define FIFOTYPE '6' /* FIFO special. */ +#define CONTTYPE '7' /* Reserved. */ + +/* Mode field bit definitions (octal) */ +#define TSUID 04000 /* Set UID on execution. */ +#define TSGID 02000 /* Set GID on execution. */ +#define TSVTX 01000 /* On directories, restricted deletion flag. */ +#define TUREAD 00400 /* Read by owner. */ +#define TUWRITE 00200 /* Write by owner. */ +#define TUEXEC 00100 /* Execute/search by owner. */ +#define TGREAD 00040 /* Read by group. */ +#define TGWRITE 00020 /* Write by group. */ +#define TGEXEC 00010 /* Execute/search by group. */ +#define TOREAD 00004 /* Read by other. */ +#define TOWRITE 00002 /* Write by other. */ +#define TOEXEC 00001 /* Execute/search by other. */ +#endif /* RTEMS_USES_TAR_H */ + +#endif /* _RTEMS_TAR_H */ -- cgit v1.2.3