board-descriptor: fix partitioning of bd eeprom
the expected partitions are: - board: 0..1024 - platform: 1024..1536 - settings: 1536..2048 start address of platform partition was not correct. BugzID: 55411 Signed-off-by: Patrick Zysset <patrick.zysset@netmodule.com>
This commit is contained in:
parent
2416bc907a
commit
adb53649bc
|
|
@ -3,7 +3,7 @@
|
|||
"eeprom": [
|
||||
{ "path": "/sys/bus/i2c/devices/1-0050/eeprom", "valid_bds": [
|
||||
{"name": "board", "start": 0, "size": 1024},
|
||||
{"name": "platform", "start": 512, "size": 512},
|
||||
{"name": "platform", "start": 1024, "size": 512},
|
||||
{"name": "settings", "start": 1536, "size": 512}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"eeprom": [
|
||||
{ "path": "/sys/bus/i2c/devices/2-0050/eeprom", "valid_bds": [
|
||||
{"name": "board", "start": 0, "size": 1024},
|
||||
{"name": "platform", "start": 512, "size": 512},
|
||||
{"name": "platform", "start": 1024, "size": 512},
|
||||
{"name": "settings", "start": 1536, "size": 512}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"eeprom": [
|
||||
{ "path": "/sys/bus/i2c/devices/0-0050/eeprom", "valid_bds": [
|
||||
{"name": "board", "start": 0, "size": 1024},
|
||||
{"name": "platform", "start": 512, "size": 512},
|
||||
{"name": "platform", "start": 1024, "size": 512},
|
||||
{"name": "settings", "start": 1536, "size": 512}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue