diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2014-09-01 13:50:47 +0200 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-09-05 13:58:49 +0900 |
commit | 32ee9bc5ed615497179a4b0e38322d1a250f2c79 (patch) | |
tree | 6087074d79b2c93822df19e502e16cb6a59b3a82 /board | |
parent | 1d07c1013c717bd79bb2bd7a94861fbeb2067176 (diff) | |
download | u-boot-imx-32ee9bc5ed615497179a4b0e38322d1a250f2c79.zip u-boot-imx-32ee9bc5ed615497179a4b0e38322d1a250f2c79.tar.gz u-boot-imx-32ee9bc5ed615497179a4b0e38322d1a250f2c79.tar.bz2 |
samsung:board: misc_init_r: call set_dfu_alt_info()
This change enable automatic setting of dfu alt info
on every boot. This is useful in case of booting one
u-boot binary from multiple media.
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/samsung/common/board.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 1fa0e51..5693813 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -324,6 +324,9 @@ int arch_early_init_r(void) #ifdef CONFIG_MISC_INIT_R int misc_init_r(void) { +#ifdef CONFIG_SET_DFU_ALT_INFO + set_dfu_alt_info(); +#endif #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG set_board_info(); #endif |