Skip to content

Commit 5851d20

Browse files
aescolarDashingR
authored andcommitted
Revert "posix: kconfig: remove select y from non-user-selectable help"
This reverts commit b82b5b0. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
1 parent 6638a95 commit 5851d20

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-
When selected via Kconfig, Zephyr will provide an alias for close() as _close().
30+
Select 'y' here and Zephyr will provide an alias for close() as _close().
3131

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

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

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

4747
config POSIX_DEVICE_IO_STDIN_STDOUT_STDERR
4848
bool
4949
help
50-
When selected via Kconfig, Zephyr will provide the stdin, stdout, and stderr variables.
50+
Select 'y' here and 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-
When selected via Kconfig, Zephyr will provide an alias for fcntl() as _fcntl().
24+
Select 'y' here and Zephyr will provide an alias for fcntl() as _fcntl().
2525

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

3131
config POSIX_FD_MGMT_ALIAS_LSEEK
3232
bool
3333
help
34-
When selected via Kconfig, Zephyr will provide an alias for lseek() as _lseek().
34+
Select 'y' here and 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-
When selected via Kconfig, Zephyr will provide an alias for fstat() as _fstat().
18+
Select 'y' here and Zephyr will provide an alias for fstat() as _fstat().
1919

2020
endif # POSIX_FILE_SYSTEM

0 commit comments

Comments
 (0)