fix v2 migration on add-drop devices

Migration to v2 (0002) was wrong. Our add/drop devices do not have an
interface named 'osc' but 'eth2' (unfortunately the physical ports on
those devices do not have those ports labeled).

Also, our network YANG models and velia code did not account for eth2
device. It was as it simply never existed...

Change-Id: Iae6a6cf8b9584bdc42af99e0a44dcba715583913
diff --git a/package/czechlight-cfg-fs/migrations/0002_ietf-interfaces_default-startup-config_add-drop.json b/package/czechlight-cfg-fs/migrations/0002_ietf-interfaces_default-startup-config_add-drop.json
new file mode 100644
index 0000000..60a22b5
--- /dev/null
+++ b/package/czechlight-cfg-fs/migrations/0002_ietf-interfaces_default-startup-config_add-drop.json
@@ -0,0 +1,34 @@
+{
+  "ietf-interfaces:interfaces": {
+    "interface": [
+      {
+        "name": "br0",
+        "type": "iana-if-type:bridge",
+        "ietf-ip:ipv4": {
+          "czechlight-network:dhcp-client": true
+        },
+        "ietf-ip:ipv6": {
+          "enabled": true,
+          "autoconf": {
+            "create-global-addresses": true
+          }
+        }
+      },
+      {
+        "name": "eth1",
+        "type": "iana-if-type:ethernetCsmacd",
+        "czechlight-network:bridge": "br0"
+      },
+      {
+        "name": "eth0",
+        "type": "iana-if-type:ethernetCsmacd",
+        "czechlight-network:bridge": "br0"
+      },
+      {
+        "name": "eth2",
+        "type": "iana-if-type:ethernetCsmacd",
+        "czechlight-network:bridge": "br0"
+      }
+    ]
+  }
+}