forked from AppleWOA/m1n1_windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
37 lines (28 loc) · 920 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* 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
// Enable SMMU abstraction layer to expose a fake SMMU to the guest which will redirect writes to the host IOMMU in a compatible manner
// #define ENABLE_SMMU
//
// Use PSCI to turn on the CPUs in earnest rather than just setting up the spintables that m1n1 uses.
//
// #define PSCI_POWER_ON_CPUS_ENABLE
#ifdef RELEASE
# define FB_SILENT_MODE
# ifdef CHAINLOADING
# define EARLY_PROXY_TIMEOUT 5
# endif
#endif
#endif