17 lines
604 B
Plaintext
17 lines
604 B
Plaintext
$NetBSD: patch-hotplug_NetBSD_vif-bridge,v 1.2 2015/08/23 16:17:12 spz Exp $
|
|
|
|
--- hotplug/NetBSD/vif-bridge.orig 2014-09-02 06:22:57.000000000 +0000
|
|
+++ hotplug/NetBSD/vif-bridge
|
|
@@ -23,7 +23,10 @@ case $xstatus in
|
|
xbridge=$(xenstore-read "$xpath/bridge")
|
|
xfid=$(xenstore-read "$xpath/frontend-id")
|
|
xhandle=$(xenstore-read "$xpath/handle")
|
|
- iface=$(xenstore-read "$xpath/vifname")
|
|
+ iface=$(xenstore-read "$xpath/vifname") || true
|
|
+ if [ x${iface} = "x" ] ; then
|
|
+ iface=xvif$xfid.$xhandle
|
|
+ fi
|
|
ifconfig $iface up
|
|
brconfig $xbridge add $iface
|
|
xenstore-write $xpath/hotplug-status connected
|