blob: 593115349cf61ed2db1b3950f7403c2f004a446f [file] [log] [blame]
Dan Talayco48370102010-03-03 15:17:33 -08001"""
2Platform configuration file
3platform == remote
4"""
5
6remote_port_map = {
7 23 : "eth2",
8 24 : "eth3",
9 25 : "eth4",
10 26 : "eth5"
11 }
12
13def platform_config_update(config):
14 """
15 Update configuration for the remote platform
16
17 @param config The configuration dictionary to use/update
18 This routine defines the port map used for this configuration
19 """
20
21 global remote_port_map
22 config["port_map"] = remote_port_map.copy()
Dan Talayco8b886b12010-06-08 14:02:35 -070023 config["caps_table_idx"] = 0