1config BLACKBOX 2 bool "Enable BlackBox" 3 default n 4 depends on KERNEL_EXTKERNEL 5 help 6 Answer Y to enable LiteOS support blackbox 7 8config BLACKBOX_LOG_PART_MOUNT_POINT 9 string "unknown" 10 default "/storage" 11 depends on BLACKBOX 12 help 13 Define the default log part representative of blackbox 14 15config BLACKBOX_LOG_ROOT_PATH 16 string "unknown" 17 default "/storage/data/log" 18 depends on BLACKBOX 19 help 20 Define the default log path of blackbox 21 22config BLACKBOX_RESERVE_MEM_ADDR 23 int "The address of the reserve mem for blackbox in hex" 24 default 0 25 depends on BLACKBOX 26 help 27 Define the address of the reserve mem for blackbox in hex. 28 29config BLACKBOX_LOG_SIZE 30 int "The size of log saved by blackbox in hex" 31 range 1024 1048576 32 default 65536 33 depends on BLACKBOX 34 help 35 Define the size of log saved by blackbox in decimal. 36