From: Richard Tollerton <[email protected]> Currently, error messages generated during tarball extract are suppressed. This seems ham-handed, particularly since under normal operation, the only expected error ought to be the attempted extraction of pipes, which typically only means /dev/log.
So stop the redirections and add an --exclude=log to suppress the error message when attempting to extract /dev/log. This requires CONFIG_FEATURE_TAR_LONG_OPTIONS if using busybox tar. Natinst-Rally-ID: TA44427 Acked-by: Gratian Crisan <[email protected]> Natinst-ReviewBoard-ID: 58620 Signed-off-by: Richard Tollerton <[email protected]> --- meta/recipes-core/udev/udev/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init index 1e69861..a96309d 100644 --- a/meta/recipes-core/udev/udev/init +++ b/meta/recipes-core/udev/udev/init @@ -69,7 +69,7 @@ case "$1" in readfiles /etc/udev/cache.data OLDDATA="$READDATA" if [ "$OLDDATA" = "$NEWDATA" ]; then - (cd /; tar xzf $DEVCACHE > /dev/null 2>&1) + (cd /; tar xzf $DEVCACHE --exclude=log) not_first_boot=1 [ "$VERBOSE" != "no" ] && echo "udev: using cache file $DEVCACHE" [ -e /dev/shm/udev.cache ] && rm -f /dev/shm/udev.cache -- 2.0.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
