31 lines
560 B
Plaintext
31 lines
560 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Character device configuration
|
|
#
|
|
|
|
menuconfig SST
|
|
bool "Modules for system software techniques"
|
|
default y
|
|
help
|
|
TODO
|
|
|
|
if SST
|
|
config SST_MEMLEAK
|
|
tristate "Memleak errors for exercise a1.2"
|
|
default n
|
|
help
|
|
Enable memleaks for exercise a1.2
|
|
|
|
config SST_BOUNDS
|
|
tristate "Out-of-bounds accesses for exercise a1.3"
|
|
default n
|
|
help
|
|
Activate out-of-bounds accesses for exercise a1.3
|
|
|
|
config SST_LOCKING
|
|
tristate "Faulty locking for exercise a1.4"
|
|
default n
|
|
help
|
|
Make locking for exercise a1.4 faulty
|
|
endif
|