d476553
diff -urNp coreutils-6.10-orig/man/cp.1 coreutils-6.10/man/cp.1
d476553
--- coreutils-6.10-orig/man/cp.1	2008-04-07 14:46:37.000000000 +0200
d476553
+++ coreutils-6.10/man/cp.1	2008-04-07 15:34:17.000000000 +0200
d476553
@@ -19,7 +19,7 @@ Copy SOURCE to DEST, or multiple SOURCE(
d476553
 Mandatory arguments to long options are mandatory for short options too.
d476553
 .TP
d476553
 \fB\-a\fR, \fB\-\-archive\fR
d476553
-same as \fB\-dpR\fR
d476553
+same as \fB\-cdpR\fR
d476553
 .TP
d476553
 \fB\-\-backup\fR[=\fICONTROL\fR]
d476553
 make a backup of each existing destination file
d476553
@@ -55,6 +55,9 @@ never follow symbolic links in SOURCE
d476553
 \fB\-p\fR
d476553
 same as \fB\-\-preserve\fR=\fImode\fR,ownership,timestamps
d476553
 .TP
d476553
+\fB\-c\fR
d476553
+same as \fB\-\-preserve\fR=context\fR
d476553
+.TP
d476553
 \fB\-\-preserve\fR[=\fIATTR_LIST\fR]
d476553
 preserve the specified attributes (default:
d476553
 mode,ownership,timestamps), if possible
d476553
diff -urNp coreutils-6.10-orig/doc/coreutils.info coreutils-6.10/doc/coreutils.info
d476553
--- coreutils-6.10-orig/doc/coreutils.info	2008-04-07 17:52:11.000000000 +0200
d476553
+++ coreutils-6.10/doc/coreutils.info	2008-04-07 18:03:27.000000000 +0200
d476553
@@ -5642,7 +5642,7 @@ options::.
d476553
      Preserve as much as possible of the structure and attributes of the
d476553
      original files in the copy (but do not attempt to preserve internal
d476553
      directory structure; i.e., `ls -U' may list the entries in a copied
d476553
-     directory in a different order).  Equivalent to `-dpR'.
d476553
+     directory in a different order).  Equivalent to `-cdpR'.
d476553
 
d476553
 `-b'
d476553
 `--backup[=METHOD]'
d476553
@@ -5660,6 +5660,11 @@ options::.
d476553
             cp --backup --force -- "$i" "$i"
d476553
           done
d476553
 
d476553
+`-c'
d476553
+     Preserve SELinux security context of the original files if possible.
d476553
+     Note: Some file systems don't support storing of SELinux security 
d476553
+           context.
d476553
+
d476553
 `--copy-contents'
d476553
      If copying recursively, copy the contents of any special files
d476553
      (e.g., FIFOs and device files) as if they were regular files.
d476553
diff -urNp coreutils-6.10-orig/doc/coreutils.texi coreutils-6.10/doc/coreutils.texi
d476553
--- coreutils-6.10-orig/doc/coreutils.texi	2008-04-07 17:52:11.000000000 +0200
d476553
+++ coreutils-6.10/doc/coreutils.texi	2008-04-07 18:01:43.000000000 +0200
d476553
@@ -6957,7 +6957,7 @@ Preserve as much as possible of the stru
d476553
 original files in the copy (but do not attempt to preserve internal
d476553
 directory structure; i.e., @samp{ls -U} may list the entries in a copied
d476553
 directory in a different order).
d476553
-Equivalent to @option{-dpR}.
d476553
+Equivalent to @option{-cdpR}.
d476553
 
d476553
 @item -b
d476553
 @itemx @w{@kbd{--backup}[=@var{method}]}
d476553
@@ -6981,6 +6981,11 @@ for i; do
d476553
 done
d476553
 @end example
d476553
 
d476553
+@item -c
d476553
+@cindex SELinux security context information, preserving
d476553
+Preserve SELinux security context of the original files if possible.
d476553
+Some file systems don't support storing of SELinux security context.
d476553
+
d476553
 @item --copy-contents
d476553
 @cindex directories, copying recursively
d476553
 @cindex copying directories recursively