m1n1/config.h
Nick Chan 226ec5298d soc: Added UART bases for A7-A11, T2 SoCs.
Add UART bases for A7-A11, T2 SoCs.

Signed-off-by: Nick Chan <towinchenmi@gmail.com>
2024-10-31 01:32:39 +09:00

33 lines
792 B
C

/* SPDX-License-Identifier: MIT */
#ifndef CONFIG_H
#define CONFIG_H
// Enable framebuffer console
#define USE_FB
// Disable framebuffer console unless verbose boot is enabled
//#define FB_SILENT_MODE
// Initialize USB early and break into proxy if device is opened within this time (sec)
//#define EARLY_PROXY_TIMEOUT 5
// Minimal build for bring-up
//#define BRINGUP
// Disable display configuration / bringup on desktop devices
//#define NO_DISPLAY
// Print RTKit logs to the console
//#define RTKIT_SYSLOG
// Target for device-specific debug builds
//#define TARGET T8103
// Some devices like Apple TV HD use other uarts for debug console
//#define TARGET_BOARD 0x34
#ifdef RELEASE
# define FB_SILENT_MODE
# ifdef CHAINLOADING
# define EARLY_PROXY_TIMEOUT 5
# endif
#endif
#endif