From: Chris Larson Date: Sun, 21 Nov 2004 06:16:14 +0000 (+0000) Subject: hotplug: add /etc/sysconfig/usb, and patch usb.rc to allow the sysconfig/usb to speci... X-Git-Tag: Release-2010-05/1~16041 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cccdfc9c069d6b238b3896f9abbd632dc19edfe5;p=openembedded.git hotplug: add /etc/sysconfig/usb, and patch usb.rc to allow the sysconfig/usb to specify exactly what host controller driver to use (simplifies things for tosa). BKrev: 41a032aeRAZ2s9Osps9D6i_IHP4ZJQ --- diff --git a/hotplug/files/sysconfig-usb b/hotplug/files/sysconfig-usb new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hotplug/files/tosa/sysconfig-usb b/hotplug/files/tosa/sysconfig-usb new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hotplug/hotplug-20040920/userspecified_hcd.patch b/hotplug/hotplug-20040920/userspecified_hcd.patch new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hotplug/hotplug_20040920.oe b/hotplug/hotplug_20040920.oe index 8f1a76d3a4..e6e5ad9347 100644 --- a/hotplug/hotplug_20040920.oe +++ b/hotplug/hotplug_20040920.oe @@ -3,9 +3,10 @@ for hotplug Linux support, and lets you plug in new devices \ and use them immediately." LICENSE = "GPL" SECTION = "base" -PR = "r3" +PR = "r4" SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz \ + file://userspecified_hcd.patch;patch=1 \ file://fix-net.agent \ file://update-usb.usermap \ file://logcheck-ignore \ @@ -14,7 +15,8 @@ SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_2 file://mmc.agent \ file://usbd.agent \ file://usbd \ - file://sysconfig-hotplug" + file://sysconfig-hotplug \ + file://sysconfig-usb" S = "${WORKDIR}/hotplug-2004_09_20" INITSCRIPT_NAME = "hotplug" @@ -52,4 +54,5 @@ do_install () { #install -m 0755 ${WORKDIR}/usbd ${D}${sysconfdir}/default/usbd install -d ${D}${sysconfdir}/sysconfig install -m 0644 ${WORKDIR}/sysconfig-hotplug ${D}${sysconfdir}/sysconfig/hotplug + install -m 0644 ${WORKDIR}/sysconfig-usb ${D}/${sysconfdir}/sysconfig/usb }