From 57057b141c232bc7555de3ce4f0a8847bf721590 Mon Sep 17 00:00:00 2001 From: Christopher Friedt Date: Wed, 24 Jan 2024 13:28:45 -0500 Subject: [PATCH] posix: add a top-level menu Add a top-level menu to prevent POSIX API options from cluttering the menuconfig view under "Additional libraries". Signed-off-by: Christopher Friedt --- lib/posix/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/posix/Kconfig b/lib/posix/Kconfig index ccf1a036318..b1443a5ab71 100644 --- a/lib/posix/Kconfig +++ b/lib/posix/Kconfig @@ -3,6 +3,8 @@ # # SPDX-License-Identifier: Apache-2.0 +menu "POSIX API Support" + config POSIX_MAX_FDS int "Maximum number of open file descriptors" default 16 if WIFI_NM_WPA_SUPPLICANT @@ -58,3 +60,5 @@ source "lib/posix/Kconfig.timer" source "lib/posix/Kconfig.uname" rsource "shell/Kconfig" + +endmenu # "POSIX API Support"