diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:14:17 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 13:01:13 -0500 |
commit | 1e019503330585e892be057cca3ed4eb1b9c9344 (patch) | |
tree | 4a3c00b9ea9e88f23da0acb1ec35f511981bca7e /doc/README.POST | |
parent | 9ef3ba85bf38289a3e3b0dcb92fad9480a0b1834 (diff) | |
download | u-boot-1e019503330585e892be057cca3ed4eb1b9c9344.zip u-boot-1e019503330585e892be057cca3ed4eb1b9c9344.tar.gz u-boot-1e019503330585e892be057cca3ed4eb1b9c9344.tar.bz2 |
post: Move CONFIG_SYS_POST to CFG_SYS_POST
Migrate the rest of the CONFIG_SYS_POST macros over to CFG_SYS_POST
namespace.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'doc/README.POST')
-rw-r--r-- | doc/README.POST | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/README.POST b/doc/README.POST index 5d92f3f..1366f95 100644 --- a/doc/README.POST +++ b/doc/README.POST @@ -649,15 +649,15 @@ not need any modifications for porting them to another board/CPU. For verifying the I2C bus, a full I2C bus scanning will be performed using the i2c_probe() routine. If a board defines -CONFIG_SYS_POST_I2C_ADDRS the I2C test will pass if all devices -listed in CONFIG_SYS_POST_I2C_ADDRS are found, and no additional -devices are detected. If CONFIG_SYS_POST_I2C_ADDRS is not defined +CFG_SYS_POST_I2C_ADDRS the I2C test will pass if all devices +listed in CFG_SYS_POST_I2C_ADDRS are found, and no additional +devices are detected. If CFG_SYS_POST_I2C_ADDRS is not defined the test will pass if any I2C device is found. -The CONFIG_SYS_POST_I2C_IGNORES define can be used to list I2C +The CFG_SYS_POST_I2C_IGNORES define can be used to list I2C devices which may or may not be present when using -CONFIG_SYS_POST_I2C_ADDRS. The I2C POST test will pass regardless -if the devices in CONFIG_SYS_POST_I2C_IGNORES are found or not. +CFG_SYS_POST_I2C_ADDRS. The I2C POST test will pass regardless +if the devices in CFG_SYS_POST_I2C_IGNORES are found or not. This is useful in cases when I2C devices are optional (eg on a daughtercard that may or may not be present) or not critical to board operation. |