m1n1/config.h
Hector Martin 4fd7b1cefd config.h: Enable proxy timeout only on stage1 builds
Signed-off-by: Hector Martin <marcan@marcan.st>
2022-07-30 11:18:23 +09:00

29 lines
614 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
// Print RTKit logs to the console
//#define RTKIT_SYSLOG
// Target for device-specific debug builds
//#define TARGET T8103
#ifdef RELEASE
# define FB_SILENT_MODE
# ifdef CHAINLOADING
# define EARLY_PROXY_TIMEOUT 5
# endif
#endif
#endif