Skip to content
Snippets Groups Projects
Commit 418b7f3a authored by Stephen Warren's avatar Stephen Warren Committed by Tom Rini
Browse files

Add board_name to CONFIG_ENV_VARS_UBOOT_CONFIG


CONFIG_ENV_VARS_UBOOT_CONFIG creates environment variables indicating
which configuration U-Boot was built for. Some U-Boot binaries run on
multiple boards, and hence this information may not uniquley describe
the HW that U-Boot is actually running on. Another patch introduces
environment variable board_name to represent that. In order to avoid
scripts having to check $board_name, use it if set, and then fall back
to using $board, make CONFIG_ENV_VARS_UBOOT_CONFIG also set a default
value for board_name, so that variable is always available.

Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 7e27f89f
No related branches found
No related tags found
No related merge requests found
...@@ -118,6 +118,7 @@ const uchar default_environment[] = { ...@@ -118,6 +118,7 @@ const uchar default_environment[] = {
"arch=" CONFIG_SYS_ARCH "\0" "arch=" CONFIG_SYS_ARCH "\0"
"cpu=" CONFIG_SYS_CPU "\0" "cpu=" CONFIG_SYS_CPU "\0"
"board=" CONFIG_SYS_BOARD "\0" "board=" CONFIG_SYS_BOARD "\0"
"board_name=" CONFIG_SYS_BOARD "\0"
#ifdef CONFIG_SYS_VENDOR #ifdef CONFIG_SYS_VENDOR
"vendor=" CONFIG_SYS_VENDOR "\0" "vendor=" CONFIG_SYS_VENDOR "\0"
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment