Skip to content

Commit b82b5b0

Browse files
cfriedtnashif
authored andcommitted
posix: kconfig: remove select y from non-user-selectable help
Several help prompts for non-user-selectable Kconfig options included the phrase "select 'y' here", which does not make any sense in this situation. Adjust the help sections to use more appropriate language. Signed-off-by: Chris Friedt <[email protected]>
1 parent d9855da commit b82b5b0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

lib/posix/options/Kconfig.device_io

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,27 @@ if POSIX_DEVICE_IO
2727
config POSIX_DEVICE_IO_ALIAS_CLOSE
2828
bool
2929
help
30-
Select 'y' here and Zephyr will provide an alias for close() as _close().
30+
When selected via Kconfig, Zephyr will provide an alias for close() as _close().
3131

3232
config POSIX_DEVICE_IO_ALIAS_OPEN
3333
bool
3434
help
35-
Select 'y' here and Zephyr will provide an alias for open() as _open().
35+
When selected via Kconfig, Zephyr will provide an alias for open() as _open().
3636

3737
config POSIX_DEVICE_IO_ALIAS_READ
3838
bool
3939
help
40-
Select 'y' here and Zephyr will provide an alias for read() as _read().
40+
When selected via Kconfig, Zephyr will provide an alias for read() as _read().
4141

4242
config POSIX_DEVICE_IO_ALIAS_WRITE
4343
bool
4444
help
45-
Select 'y' here and Zephyr will provide an alias for write() as _write().
45+
When selected via Kconfig, Zephyr will provide an alias for write() as _write().
4646

4747
config POSIX_DEVICE_IO_STDIN_STDOUT_STDERR
4848
bool
4949
help
50-
Select 'y' here and Zephyr will provide the stdin, stdout, and stderr variables.
50+
When selected via Kconfig, Zephyr will provide the stdin, stdout, and stderr variables.
5151

5252
Some libc's that implement the POSIX API may already have declared these variables.
5353
However, it should be noted that they are a part of POSIX and not a part of ISO C.

lib/posix/options/Kconfig.fd_mgmt

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ if POSIX_FD_MGMT
2121
config POSIX_FD_MGMT_ALIAS_FCNTL
2222
bool
2323
help
24-
Select 'y' here and Zephyr will provide an alias for fcntl() as _fcntl().
24+
When selected via Kconfig, Zephyr will provide an alias for fcntl() as _fcntl().
2525

2626
config POSIX_FD_MGMT_ALIAS_FTRUNCATE
2727
bool
2828
help
29-
Select 'y' here and Zephyr will provide an alias for ftruncate() as _ftruncate().
29+
When selected via Kconfig, Zephyr will provide an alias for ftruncate() as _ftruncate().
3030

3131
config POSIX_FD_MGMT_ALIAS_LSEEK
3232
bool
3333
help
34-
Select 'y' here and Zephyr will provide an alias for lseek() as _lseek().
34+
When selected via Kconfig, Zephyr will provide an alias for lseek() as _lseek().
3535

3636
endif # POSIX_FD_MGMT

lib/posix/options/Kconfig.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ if POSIX_FILE_SYSTEM
1515
config POSIX_FILE_SYSTEM_ALIAS_FSTAT
1616
bool
1717
help
18-
Select 'y' here and Zephyr will provide an alias for fstat() as _fstat().
18+
When selected via Kconfig, Zephyr will provide an alias for fstat() as _fstat().
1919

2020
endif # POSIX_FILE_SYSTEM

0 commit comments

Comments
 (0)