Thomas Vachuska
Committed by Brian O'Connor

Fixing onos_stage.py to activate only drivers by default.

Change-Id: Ide2621c363defd4fabf559c0db5d44ebd905ba80
...@@ -68,11 +68,7 @@ def stageOnos(output, files=[]): ...@@ -68,11 +68,7 @@ def stageOnos(output, files=[]):
68 dest += 'onos-features-1.6.0-SNAPSHOT-features.xml' 68 dest += 'onos-features-1.6.0-SNAPSHOT-features.xml'
69 with open(file) as f: 69 with open(file) as f:
70 addFile(output, dest, f, os.stat(file).st_size) 70 addFile(output, dest, f, os.stat(file).st_size)
71 - # FIXME figure out "active" apps
72 addString(output, BASE + 'apps/org.onosproject.drivers/active', '') 71 addString(output, BASE + 'apps/org.onosproject.drivers/active', '')
73 - addString(output, BASE + 'apps/org.onosproject.openflow-base/active', '')
74 - addString(output, BASE + 'apps/org.onosproject.lldp/active', '')
75 - addString(output, BASE + 'apps/org.onosproject.host/active', '')
76 addString(output, BASE + 'VERSION', VERSION) 72 addString(output, BASE + 'VERSION', VERSION)
77 73
78 if __name__ == '__main__': 74 if __name__ == '__main__':
......