Commit c152fb90 authored by Chris Friedt's avatar Chris Friedt Committed by Henrik Brix Andersen
Browse files

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: default avatarChris Friedt <cfriedt@tenstorrent.com>
parent d9398cd2
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -27,22 +27,22 @@ if POSIX_DEVICE_IO
config POSIX_DEVICE_IO_ALIAS_CLOSE
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for close() as _close().
	  When selected via Kconfig, Zephyr will provide an alias for close() as _close().

config POSIX_DEVICE_IO_ALIAS_OPEN
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for open() as _open().
	  When selected via Kconfig, Zephyr will provide an alias for open() as _open().

config POSIX_DEVICE_IO_ALIAS_READ
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for read() as _read().
	  When selected via Kconfig, Zephyr will provide an alias for read() as _read().

config POSIX_DEVICE_IO_ALIAS_WRITE
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for write() as _write().
	  When selected via Kconfig, Zephyr will provide an alias for write() as _write().

endif # POSIX_DEVICE_IO

+3 −3
Original line number Diff line number Diff line
@@ -21,16 +21,16 @@ if POSIX_FD_MGMT
config POSIX_FD_MGMT_ALIAS_FCNTL
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for fcntl() as _fcntl().
	  When selected via Kconfig, Zephyr will provide an alias for fcntl() as _fcntl().

config POSIX_FD_MGMT_ALIAS_FTRUNCATE
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for ftruncate() as _ftruncate().
	  When selected via Kconfig, Zephyr will provide an alias for ftruncate() as _ftruncate().

config POSIX_FD_MGMT_ALIAS_LSEEK
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for lseek() as _lseek().
	  When selected via Kconfig, Zephyr will provide an alias for lseek() as _lseek().

endif # POSIX_FD_MGMT
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ if POSIX_FILE_SYSTEM
config POSIX_FILE_SYSTEM_ALIAS_FSTAT
	bool
	help
	  Select 'y' here and Zephyr will provide an alias for fstat() as _fstat().
	  When selected via Kconfig, Zephyr will provide an alias for fstat() as _fstat().

config POSIX_FILE_SYSTEM_R
	bool "Thread-Safe File System"