summaryrefslogtreecommitdiff
path: root/recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2009-05-27 22:37:27 +0200
committerKoen Kooi <koen@openembedded.org>2009-05-27 22:37:27 +0200
commit9e3fda07e7f0726c19ebf4ad3c050c6621b686a1 (patch)
tree2ac40276b580850c90e7cbd65eb0bbeb6432c6b2 /recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch
parente47846def85976da24a74838c55fafcb7751d3dd (diff)
parent4103b643af81d0f02df999de0b5d32170f2a7567 (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch')
-rw-r--r--recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch b/recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch
new file mode 100644
index 0000000000..c68a0099fa
--- /dev/null
+++ b/recipes/linux-hotplug/linux-hotplug-20040920/hotplug-binary-path.patch
@@ -0,0 +1,20 @@
+--- hotplug-2004_09_20/etc/hotplug/pci.rc-orig 2009-04-07 21:00:18.000000000 +0200
++++ hotplug-2004_09_20/etc/hotplug/pci.rc 2009-04-07 21:00:43.000000000 +0200
+@@ -38,7 +38,7 @@
+ sub_vendor_id=`cat $PCI_DEVICE/subsystem_vendor`
+ sub_device_id=`cat $PCI_DEVICE/subsystem_device`
+ PCI_SUBSYS_ID="${sub_vendor_id#0x}:${sub_device_id#0x}"
+- /sbin/hotplug pci
++ /usr/sbin/hotplug pci
+ done
+ fi
+ else
+@@ -53,7 +53,7 @@
+ for BUS in `cd /proc/bus/pci;find * -type d -print`; do
+ for SLOT_FUNC in `cd /proc/bus/pci/$BUS; echo *`; do
+ PCI_SLOT=$BUS:$SLOT_FUNC
+- /sbin/hotplug pci
++ /usr/sbin/hotplug pci
+ done
+ done
+ fi