-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathKconfig
More file actions
42 lines (38 loc) · 1.39 KB
/
Kconfig
File metadata and controls
42 lines (38 loc) · 1.39 KB
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
38
39
40
41
42
menu "Baseband Security Guard Configuration"
config BBG
bool "Enable Baseband Guard (Anti-Format)"
default y
depends on SECURITY
help
An Android baseband anti-formatting protector
module by Github@showdo, preventing malicious
scripts or programs writing into important
function partitions.
If unsure, leave this y.
config BBG_BLOCK_BOOT
bool "Enable Baseband Protection for Boot Partition"
depends on BBG
default n
help
Enable protection for boot partition to
prevent malicious scripts or programs
destroying, however this may cause failure
when flashing kernels in Android system
(meaning that you'll only be able to flash
kernels/boot partition image in recovery/
fastboot mode).
If unsure, leave this n.
config BBG_BLOCK_RECOVERY
bool "Enable Baseband Protection for Recovery Partition"
depends on BBG
default n
help
Enable protection for recovery partition to
prevent malicious scripts or programs
destroying, however this may cause failure
when flashing custom recs in Android system
(meaning that you'll only be able to flash
recovery partition image in fastbootd/
bootloader mode).
If unsure, leave this n.
endmenu