AETHER-3321 Refactor configuration code in enodebd

AETHER-3520 Make enodebd containerized
AETHER-3504 Geomap of Grafana with enodeb coordinate information

Change-Id: Ie425254fa1a8b286004d2bcd366cf6c7057c925c
diff --git a/devices/device_utils.py b/devices/device_utils.py
index 1f951e2..1745867 100644
--- a/devices/device_utils.py
+++ b/devices/device_utils.py
@@ -21,7 +21,7 @@
     BAICELLS_QAFB = "Baicells QAFB"
     BAICELLS_RTS = "Baicells RTS"
     CAVIUM = "Cavium"
-    FREEDOMFI_ONE = "FREEDOMFI ONE"
+    SERCOMM = "Sercomm"
 
 
 def get_device_name(device_oui: str, sw_version: str,) -> str:
@@ -67,7 +67,7 @@
     elif device_oui in {"000FB7", "744D28"}:
         return EnodebDeviceName.CAVIUM
     elif device_oui == "000E8F":
-        return EnodebDeviceName.FREEDOMFI_ONE
+        return EnodebDeviceName.SERCOMM
     else:
         raise UnrecognizedEnodebError("Device %s unsupported" % device_oui)