mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
3e2095e960
Samsung Galaxy A3, A5, A7 (2017) - middle class Samsung smartphones. U-boot can be used as chain-loaded bootloader to gain control on booting vanilla linux(and possibly others) kernels Signed-off-by: Dzmitry Sankouski <dsankouski@gmail.com> Cc: Minkyu Kang <mk7.kang@samsung.com>
11 lines
183 B
C
11 lines
183 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Samsung A5Y17 and A3Y17 LTE boards based on Exynos 7880 and Exynos 7870 SoCs
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
int exynos_init(void)
|
|
{
|
|
return 0;
|
|
}
|