2021-01-25 04:37:38 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2022-02-21 07:07:01 +00:00
|
|
|
// Enable framebuffer console
|
2021-05-07 03:18:07 +00:00
|
|
|
#define USE_FB
|
2022-02-21 07:07:01 +00:00
|
|
|
// 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
|
2021-01-25 04:37:38 +00:00
|
|
|
|
2022-06-27 09:16:17 +00:00
|
|
|
// Minimal build for bring-up
|
|
|
|
//#define BRINGUP
|
|
|
|
|
2022-02-21 07:07:01 +00:00
|
|
|
// Print RTKit logs to the console
|
2022-01-16 19:24:03 +00:00
|
|
|
//#define RTKIT_SYSLOG
|
|
|
|
|
2021-11-01 04:36:05 +00:00
|
|
|
// Target for device-specific debug builds
|
|
|
|
//#define TARGET T8103
|
|
|
|
|
2022-02-21 07:07:01 +00:00
|
|
|
#ifdef RELEASE
|
|
|
|
# define FB_SILENT_MODE
|
2022-07-30 01:54:06 +00:00
|
|
|
# ifdef CHAINLOADING
|
|
|
|
# define EARLY_PROXY_TIMEOUT 5
|
|
|
|
# endif
|
2022-02-21 07:07:01 +00:00
|
|
|
#endif
|
|
|
|
|
2021-01-25 04:37:38 +00:00
|
|
|
#endif
|