1dd786328f
Cleanup the Kconfig for UBI by using menuconfig to enable/disable the entire driver. Remove the dependency checks for MTD_UBI and MTD_UBI_DEBUG by wrapping the options in if/endif blocks and remove any redundant checks. Remove all default n since that is the Kconfig default. Change menu "Additional UBI debugging messages" into a comment to remove one menu level. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
74 lines
2.0 KiB
Plaintext
74 lines
2.0 KiB
Plaintext
comment "UBI debugging options"
|
|
|
|
config MTD_UBI_DEBUG
|
|
bool "UBI debugging"
|
|
depends on SYSFS
|
|
select DEBUG_FS
|
|
select KALLSYMS_ALL if KALLSYMS && DEBUG_KERNEL
|
|
help
|
|
This option enables UBI debugging.
|
|
|
|
if MTD_UBI_DEBUG
|
|
|
|
config MTD_UBI_DEBUG_MSG
|
|
bool "UBI debugging messages"
|
|
help
|
|
This option enables UBI debugging messages.
|
|
|
|
config MTD_UBI_DEBUG_PARANOID
|
|
bool "Extra self-checks"
|
|
help
|
|
This option enables extra checks in UBI code. Note this slows UBI down
|
|
significantly.
|
|
|
|
config MTD_UBI_DEBUG_DISABLE_BGT
|
|
bool "Do not enable the UBI background thread"
|
|
help
|
|
This option switches the background thread off by default. The thread
|
|
may be also be enabled/disabled via UBI sysfs.
|
|
|
|
config MTD_UBI_DEBUG_EMULATE_BITFLIPS
|
|
bool "Emulate flash bit-flips"
|
|
help
|
|
This option emulates bit-flips with probability 1/50, which in turn
|
|
causes scrubbing. Useful for debugging and stressing UBI.
|
|
|
|
config MTD_UBI_DEBUG_EMULATE_WRITE_FAILURES
|
|
bool "Emulate flash write failures"
|
|
help
|
|
This option emulates write failures with probability 1/100. Useful for
|
|
debugging and testing how UBI handlines errors.
|
|
|
|
config MTD_UBI_DEBUG_EMULATE_ERASE_FAILURES
|
|
bool "Emulate flash erase failures"
|
|
help
|
|
This option emulates erase failures with probability 1/100. Useful for
|
|
debugging and testing how UBI handlines errors.
|
|
|
|
comment "Additional UBI debugging messages"
|
|
|
|
config MTD_UBI_DEBUG_MSG_BLD
|
|
bool "Additional UBI initialization and build messages"
|
|
help
|
|
This option enables detailed UBI initialization and device build
|
|
debugging messages.
|
|
|
|
config MTD_UBI_DEBUG_MSG_EBA
|
|
bool "Eraseblock association unit messages"
|
|
help
|
|
This option enables debugging messages from the UBI eraseblock
|
|
association unit.
|
|
|
|
config MTD_UBI_DEBUG_MSG_WL
|
|
bool "Wear-leveling unit messages"
|
|
help
|
|
This option enables debugging messages from the UBI wear-leveling
|
|
unit.
|
|
|
|
config MTD_UBI_DEBUG_MSG_IO
|
|
bool "Input/output unit messages"
|
|
help
|
|
This option enables debugging messages from the UBI input/output unit.
|
|
|
|
endif # MTD_UBI_DEBUG
|