diff options
author | Lin Fuzhen <fuzhen.lin@freescale.com> | 2013-06-19 14:20:22 +0800 |
---|---|---|
committer | Lin Fuzhen <fuzhen.lin@freescale.com> | 2013-06-19 14:53:43 +0800 |
commit | d1b4e0f520584486691791a46485706409fc6e20 (patch) | |
tree | 4c834aac8ea064c70804421f147e0e04ab1cf880 /board | |
parent | 8452e4708e69399768e2240dad50d3809bd5b757 (diff) | |
download | u-boot-imx-d1b4e0f520584486691791a46485706409fc6e20.zip u-boot-imx-d1b4e0f520584486691791a46485706409fc6e20.tar.gz u-boot-imx-d1b4e0f520584486691791a46485706409fc6e20.tar.bz2 |
ENGR00266869-1 imx6x sarebsd: Fix recovery fail issue on SD
Correct the recovery environment setting when boot from SD card on
sabresd board
Signed-off-by: Lin Fuzhen <fuzhen.lin@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/common/recovery.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/common/recovery.c b/board/freescale/common/recovery.c index 5704e09..31a8076 100644 --- a/board/freescale/common/recovery.c +++ b/board/freescale/common/recovery.c @@ -1,7 +1,7 @@ /* * Freescale Android Recovery mode checking routing * - * Copyright (C) 2010-2012 Freescale Semiconductor, Inc. + * Copyright (C) 2010-2013 Freescale Semiconductor, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -101,6 +101,7 @@ void setup_recovery_env(void) char *env, *boot_cmd; int bootdev = get_boot_device(); + printf("recovery on bootdev: %d\n", bootdev); boot_cmd = supported_reco_envs[bootdev].cmd; if (boot_cmd == NULL) { |