4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-20 22:17:20 +08:00

Merge pull request #4697 from mysterywolf/posixkconfig

[POSIX] beautify libc Kconfig
This commit is contained in:
Bernard Xiong 2021-05-16 08:55:50 +08:00 committed by GitHub
commit d0793bc04c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,26 +16,26 @@ endif
if RT_USING_LIBC && RT_USING_DFS if RT_USING_LIBC && RT_USING_DFS
config RT_USING_POSIX config RT_USING_POSIX
bool "Enable POSIX layer for poll/select, stdin etc" bool "Enable POSIX layer for compatibility with UNIX APIs, poll/select etc"
select RT_USING_DFS_DEVFS select RT_USING_DFS_DEVFS
default y default y
if RT_USING_POSIX if RT_USING_POSIX
config RT_USING_POSIX_MMAP config RT_USING_POSIX_MMAP
bool "Enable mmap() API" bool "Enable mmap() API"
default n default n
config RT_USING_POSIX_TERMIOS config RT_USING_POSIX_TERMIOS
bool "Enable termios APIs" bool "Enable termios APIs"
default n default n
config RT_USING_POSIX_GETLINE config RT_USING_POSIX_GETLINE
bool "Enable getline()/getdelim() APIs" bool "Enable getline()/getdelim() APIs"
default n default n
config RT_USING_POSIX_AIO config RT_USING_POSIX_AIO
bool "Enable AIO" bool "Enable AIO"
default n default n
endif endif
endif endif