b30cf44b93
Add new platform x86_64-ragile_ra-b6510-48v8c-r0 ASIC Vendor: Broadcom Switch ASIC: Trident 3 Port Config: 48x25G+8x100G Signed-off-by: pettershao-ragilenetworks <pettershao@ragilenetworks.com>
24 lines
686 B
Python
24 lines
686 B
Python
# -*- coding: UTF-8 -*-
|
|
import os
|
|
|
|
def get_machine_info():
|
|
if not os.path.isfile('/host/machine.conf'):
|
|
return None
|
|
machine_vars = {}
|
|
with open('/host/machine.conf') as machine_file:
|
|
for line in machine_file:
|
|
tokens = line.split('=')
|
|
if len(tokens) < 2:
|
|
continue
|
|
machine_vars[tokens[0]] = tokens[1].strip()
|
|
return machine_vars
|
|
|
|
def get_platform_info(machine_info):
|
|
if machine_info != None:
|
|
if 'onie_platform' in machine_info:
|
|
return machine_info['onie_platform']
|
|
elif 'aboot_platform' in machine_info:
|
|
return machine_info['aboot_platform']
|
|
return None
|
|
|