From 676441ec54c01b1de4ec97ba0332540fbd312d3d Mon Sep 17 00:00:00 2001 From: "sowon.na" Date: Tue, 16 Feb 2016 21:59:31 +0900 Subject: [PATCH] board:samsung:remove routine to fastboot/recovery This patch removes special routine to fastboot or recovery mode while booting. Before this patch, u-boot goes to fastboot mode with Pin 13 grounded on J27 or Pin 7 grounded on J26 of artik5 while booting. We remove this routine for preventing unintended booting error. Change-Id: I2459d518bbf23fe78ea885390f8140856d6f9fb4 Signed-off-by: sowon.na --- board/samsung/espresso3250/espresso3250.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/samsung/espresso3250/espresso3250.c b/board/samsung/espresso3250/espresso3250.c index 28f3debab..fc9547985 100644 --- a/board/samsung/espresso3250/espresso3250.c +++ b/board/samsung/espresso3250/espresso3250.c @@ -505,7 +505,9 @@ int board_late_init(void) rst_stat = readl(&pmu->rst_stat); printf("rst_stat : 0x%x\n", rst_stat); +#if 0 pressed_key = check_key(); +#endif switch(pressed_key) { case 0x1: if ((om_status >> 1) == OM_1stSDMMC_2ndUSB) { -- 2.34.1