2277fdeca8
This commit fixes the warnings reported by check-package on the help text of all package Config.in files, related to the formatting of the help text: should start with a tab, then 2 spaces, then at most 62 characters. The vast majority of warnings fixed were caused by too long lines. A few warnings were related to spaces being used instead of a tab to indent the help text. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
745 B
Plaintext
28 lines
745 B
Plaintext
config BR2_PACKAGE_SMSTOOLS3
|
|
bool "smstools3"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
The SMS Server Tools 3 is a SMS Gateway software which can
|
|
send and receive short messages through GSM modems and
|
|
mobile phones.
|
|
|
|
http://smstools3.kekekasvi.com/
|
|
|
|
if BR2_PACKAGE_SMSTOOLS3
|
|
|
|
config BR2_PACKAGE_SMSTOOLS3_NB_MODEMS
|
|
int "Number of modems to support"
|
|
default 1
|
|
help
|
|
To reduce memory footprint of SMS Server Tools, you can
|
|
specify the exact number of modems connected to your
|
|
board. By default only 1 modem is used.
|
|
|
|
endif
|
|
|
|
comment "smstools3 needs a toolchain w/ wchar, threads"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|