From 16535dde428e8e9b87dfecf3888ed54cd4aab030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0tetiar?= Date: Wed, 27 Jan 2010 07:58:36 +0000 Subject: udev: get rid of 'timestamp in the future' tar messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch tries to get rid of spew of the useless tar messages durring boot process on machines without RTC, such as the Beagleboard. Example: Please wait: booting... Starting udev tar: dev/.udev/uevent_seqnum: time stamp 1970-01-01 01:00:21 is 14.122497521 s in the future tar: dev/.udev/rules.d: time stamp 1970-01-01 01:00:07 is 0.119201623 s in the future tar: dev/.udev/db/\x2fdevices\x2fvirtual\x2fblock\x2fram9: time stamp 1970-01-01 01:00:22 is 15.118713341 s in the future [ more then 100 similar lines cutted off] Signed-off-by: Petr Štetiar Acked-by: Chris Larson Signed-off-by: Philip Balister --- recipes/udev/udev-141/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/udev/udev-141') diff --git a/recipes/udev/udev-141/init b/recipes/udev/udev-141/init index 24ca9d874d..66705e6767 100644 --- a/recipes/udev/udev-141/init +++ b/recipes/udev/udev-141/init @@ -44,7 +44,7 @@ if [ "$DEVCACHE" != "" ]; then cmp -s /tmp/uname /etc/udev/saved.uname && \ cmp -s /tmp/cmdline /etc/udev/saved.cmdline && \ cmp -s /tmp/atags /etc/udev/saved.atags; then - (cd /; tar xf $DEVCACHE) + (cd /; tar xf $DEVCACHE > /dev/null 2>&1) not_first_boot=1 fi fi -- cgit v1.2.3