From b2f192faabe412adce79534e22efe9fb69ee40e2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 21 Jul 2006 10:10:31 +0000 Subject: Rename /openembedded/ -> /meta/ git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- .../hotplug-net-agent-usb.patch | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 meta/packages/linux-hotplug/linux-hotplug-20040920/hotplug-net-agent-usb.patch (limited to 'meta/packages/linux-hotplug/linux-hotplug-20040920/hotplug-net-agent-usb.patch') diff --git a/meta/packages/linux-hotplug/linux-hotplug-20040920/hotplug-net-agent-usb.patch b/meta/packages/linux-hotplug/linux-hotplug-20040920/hotplug-net-agent-usb.patch new file mode 100644 index 0000000000..a64fc50d2b --- /dev/null +++ b/meta/packages/linux-hotplug/linux-hotplug-20040920/hotplug-net-agent-usb.patch @@ -0,0 +1,43 @@ +--- hotplug/etc/hotplug/net.agent 2005-01-13 21:12:47.143597392 +1300 ++++ hotplug/etc/hotplug/net.agent 2005-01-13 21:17:57.095477544 +1300 +@@ -41,6 +41,9 @@ + debug_mesg assuming $INTERFACE is already up + exit 0 + ;; ++ # interfaces that don't go up until attached ++ usbf) ++ ;; + # interfaces that are registered then brought up + *) + # NOTE: network configuration relies on administered state, +@@ -83,6 +86,13 @@ + mesg $1 $ACTION event not handled + ;; + ++attach) ++ # ifupdown is dumb and won't bring up an interface that it thinks ++ # might already be configured. ++ /sbin/ifdown $INTERFACE ++ exec /sbin/ifup $INTERFACE ++ ;; ++ + remove|unregister) + case $INTERFACE in + # interfaces that are unregistered after being "down" (?) +@@ -105,6 +115,16 @@ + mesg $1 $ACTION event not handled + ;; + ++detach) ++ if [ -x /sbin/ifdown ]; then ++ debug_mesg invoke ifdown $INTERFACE ++ exec /sbin/ifdown $INTERFACE ++ else ++ mesg "E: /sbin/ifdown not found. You need to install ifupdown package" ++ fi ++ mesg $1 $ACTION event not handled ++ ;; ++ + *) + debug_mesg NET $ACTION event for $INTERFACE not supported + exit 1 ;; -- cgit v1.2.3-54-g00ecf