diff options
-rw-r--r-- | recipes/udev/udev-141/init | 2 | ||||
-rw-r--r-- | recipes/udev/udev_141.bb | 2 |
2 files changed, 2 insertions, 2 deletions
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 diff --git a/recipes/udev/udev_141.bb b/recipes/udev/udev_141.bb index df5e346c4d..d1fee30d18 100644 --- a/recipes/udev/udev_141.bb +++ b/recipes/udev/udev_141.bb @@ -6,7 +6,7 @@ LICENSE = "GPL" # Untested DEFAULT_PREFERENCE = "-1" -PR = "r20" +PR = "r21" # needed for init.d script RDEPENDS_${PN} += "udev-utils" |