Jason Lin | b765e11 | 2023-12-06 01:49:31 +0000 | [diff] [blame] | 1 | # This include file is aim to pass variables to bb/bb.apppend files, |
| 2 | # such as sysguid tool, and easily maintain platform settings |
| 3 | |
| 4 | |
| 5 | ##################### Configure default EEPROM setting ##################### |
| 6 | ### The I2C bus is "0 based, decimal" |
| 7 | ### The address and offset are "hexcimal" |
| 8 | ### e.g. |
| 9 | ### EEPROM_GUID_I2C_BUS = "3" |
| 10 | ### EEPROM_GUID_I2C_ADDRESS = "0x54" |
| 11 | ### EEPROM_GUID_OFFSET = "0x1F00" |
| 12 | |
| 13 | EEPROM_GUID_I2C_BUS= "3" |
| 14 | EEPROM_GUID_I2C_ADDRESS = "0x54" |
| 15 | EEPROM_GUID_OFFSET = "0x1F00" |
| 16 | |
| 17 | EEPROM_MAC_I2C_BUS = "14" |
| 18 | EEPROM_MAC_I2C_ADDRESS = "0x50" |
| 19 | EEPROM_MAC_OFFSET = "0x1000" |
| 20 | |
| 21 | ############################################################################ |