mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
f40574e2d7
Move this in to Kconfig with a default of 115200. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> [trini: Run moveconfig.py, reword commit slightly] Signed-off-by: Tom Rini <trini@konsulko.com>
20 lines
396 B
C
20 lines
396 B
C
/*
|
|
* Configuration for ODROID-C2
|
|
* (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define CONFIG_MISC_INIT_R
|
|
|
|
/* Serial setup */
|
|
#define CONFIG_CONS_INDEX 0
|
|
|
|
#define MESON_FDTFILE_SETTING "fdtfile=amlogic/meson-gxbb-odroidc2.dtb\0"
|
|
|
|
#include <configs/meson-gxbb-common.h>
|
|
|
|
#endif /* __CONFIG_H */
|