aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-core/udev/udev/udev-cache
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/udev/udev/udev-cache')
-rw-r--r--recipes-core/udev/udev/udev-cache20
1 files changed, 0 insertions, 20 deletions
diff --git a/recipes-core/udev/udev/udev-cache b/recipes-core/udev/udev/udev-cache
deleted file mode 100644
index 77bbda6..0000000
--- a/recipes-core/udev/udev/udev-cache
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh -e
-
-### BEGIN INIT INFO
-# Provides: udev-cache
-# Required-Start: mountall
-# Required-Stop:
-# Default-Start: S
-# Default-Stop:
-# Short-Description: cache /dev to speedup the udev next boot
-### END INIT INFO
-
-[ -d /sys/class ] || exit 1
-[ -r /proc/mounts ] || exit 1
-[ -x /sbin/udevd ] || exit 1
-
-if [ ! -e /etc/dev.tar ]; then
- (cd /; tar cf /etc/dev.tar dev)
-fi
-
-exit 0