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-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
|
|
|
|
# define EARLY_PROXY_TIMEOUT 5
|
|
|
|
#endif
|
|
|
|
|
2021-01-25 04:37:38 +00:00
|
|
|
#endif
|