diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-19 16:27:24 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-10-02 16:00:39 -0400 |
commit | c2d8b9652ed4c62d579eb9e090efbdc04702e087 (patch) | |
tree | 188e206ac499429c1da3c3cfe92506fdfc8fd8d2 | |
parent | f453220c1ef176409197f67e064646ffd143de64 (diff) | |
download | u-boot-imx-c2d8b9652ed4c62d579eb9e090efbdc04702e087.zip u-boot-imx-c2d8b9652ed4c62d579eb9e090efbdc04702e087.tar.gz u-boot-imx-c2d8b9652ed4c62d579eb9e090efbdc04702e087.tar.bz2 |
Blackfin: adi config: add a hook for boards to append the env
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | include/configs/bfin_adi_common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index bf3952c..55b8b0b 100644 --- a/include/configs/bfin_adi_common.h +++ b/include/configs/bfin_adi_common.h @@ -231,10 +231,14 @@ #else # define NETWORK_ENV_SETTINGS #endif +#ifndef BOARD_ENV_SETTINGS +# define BOARD_ENV_SETTINGS +#endif #define CONFIG_EXTRA_ENV_SETTINGS \ NAND_ENV_SETTINGS \ NETWORK_ENV_SETTINGS \ - FLASHBOOT_ENV_SETTINGS + FLASHBOOT_ENV_SETTINGS \ + BOARD_ENV_SETTINGS /* * Network Settings |