Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/0e74b56518e5479aa122b22bae10fa62c6ecd57e You should set ROOT_URL correctly, otherwise the web may not work correctly.

SMDKV310: Fix build error for smdkv310 board

Fix build error for smdkv310 board:

board/samsung/smdkv310/smdkv310.c:126: undefined reference to `gpio_set_pull'

Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
master
Chander Kashyap 14 years ago committed by Albert ARIBAUD
parent ef5d9eb925
commit 0e74b56518
  1. 2
      board/samsung/smdkv310/smdkv310.c

@ -123,7 +123,7 @@ int board_mmc_init(bd_t *bis)
/* GPK2[0:1] pull disable */
if (i == 0 || i == 1) {
gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE);
s5p_gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE);
continue;
}

Loading…
Cancel
Save