populate-volatile.sh: use 'cp -a' to avoid potential problem
authorChen Qi <Qi.Chen@windriver.com>
Wed, 7 Aug 2013 07:17:15 +0000 (15:17 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 16 Aug 2013 10:14:36 +0000 (11:14 +0100)
Previously, dead links in target directory will not be copied.
This is incorrect as dead links are not uncommon in our rootfs.
So we use '-a' option instead.

(From OE-Core rev: 742440441222e0627abbdd3eb2ee16401e8f4adf)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh

index 0ff0e1a..915b7d0 100755 (executable)
@@ -72,7 +72,8 @@ link_file() {
        if [ -L \"$2\" ]; then
                [ \"\$(readlink -f \"$2\")\" != \"\$(readlink -f \"$1\")\" ] && { rm -f \"$2\"; ln -sf \"$1\" \"$2\"; };
        elif [ -d \"$2\" ]; then
-               for f in $2/* $2/.[^.]*; do [ -e \$f ] && cp -rf \$f $1; done;
+               cp -a $2/* $1 2>/dev/null;
+               cp -a $2/.[!.]* $1 2>/dev/null;
                rm -rf \"$2\";
                ln -sf \"$1\" \"$2\";
        else