diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-07-11 09:00:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-11 09:00:30 +0000 |
commit | bbd49e8cb7948f04b0741f476cacd831dbc125f8 (patch) | |
tree | 55a72a5738fe9d4ed21785b7f20ac8cbc08de17f | |
parent | b38e8d27d1076bf495fcbbc88fb07cb21407a5e6 (diff) |
Hotplug mmc-agent: Increase delay to give udev based systems more time to create the device node
-rwxr-xr-x | packages/linux-hotplug/files/mmc.agent | 2 | ||||
-rw-r--r-- | packages/linux-hotplug/linux-hotplug_20040920.bb | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/packages/linux-hotplug/files/mmc.agent b/packages/linux-hotplug/files/mmc.agent index 3b2050d7eb..a80daa4603 100755 --- a/packages/linux-hotplug/files/mmc.agent +++ b/packages/linux-hotplug/files/mmc.agent @@ -30,7 +30,7 @@ case `uname -r` in esac if [ "$ACTION" = "add" ] ; then - sleep 1 + sleep 4 echo -n add > /dev/console for n in 1 2 3 4 ; do device=/dev/$devpath$n diff --git a/packages/linux-hotplug/linux-hotplug_20040920.bb b/packages/linux-hotplug/linux-hotplug_20040920.bb index 26b204e21a..ef2fde6647 100644 --- a/packages/linux-hotplug/linux-hotplug_20040920.bb +++ b/packages/linux-hotplug/linux-hotplug_20040920.bb @@ -7,16 +7,16 @@ RPROVIDES = "hotplug" RCONFLICTS = "hotplug" RREPLACES = "hotplug" SECTION = "base" -PR = "r4" RSUGGESTS = "pciutils usbutils" +PR = "r5" SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz \ - file://userspecified_hcd.patch;patch=1 \ - file://hotplug-net-agent-usb.patch;patch=1 \ - file://usbrc-busybox.patch;patch=1 \ - file://fix-net.agent \ - file://update-usb.usermap \ - file://logcheck-ignore \ + file://userspecified_hcd.patch;patch=1 \ + file://hotplug-net-agent-usb.patch;patch=1 \ + file://usbrc-busybox.patch;patch=1 \ + file://fix-net.agent \ + file://update-usb.usermap \ + file://logcheck-ignore \ file://sleeve.agent \ file://sleeve.rc \ file://mmc.agent \ |