This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch releases/12.8
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/releases/12.8 by this push:
     new 0028f0cae9 enable CONFIG_PIPES where CONFIG_LIBUV is enabled
0028f0cae9 is described below

commit 0028f0cae9a1d4f40c6c2c0fba311663f32fba17
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Tue Dec 17 16:18:05 2024 +0900

    enable CONFIG_PIPES where CONFIG_LIBUV is enabled
    
    after running the following script, reverted a few
    unrelated modifications manually.
    ```
    git grep -l CONFIG_LIBUV|grep defconfig|while read FILE;do
    DIR=$(dirname $FILE)
    ./tools/configure.sh -E $DIR
    kconfig-tweak -e CONFIG_PIPES
    kconfig-tweak -d CONFIG_HOST_MACOS
    make savedefconfig
    cp defconfig $FILE
    done
    ```
    
    cf. https://github.com/apache/nuttx/issues/14773
---
 boards/sim/sim/sim/configs/lua/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/boards/sim/sim/sim/configs/lua/defconfig 
b/boards/sim/sim/sim/configs/lua/defconfig
index 5b3a0c8d7d..7dc662ea2a 100644
--- a/boards/sim/sim/sim/configs/lua/defconfig
+++ b/boards/sim/sim/sim/configs/lua/defconfig
@@ -52,6 +52,7 @@ CONFIG_NSH_BUILTIN_APPS=y
 CONFIG_NSH_FILE_APPS=y
 CONFIG_NSH_READLINE=y
 CONFIG_PATH_INITIAL="/bin"
+CONFIG_PIPES=y
 CONFIG_PSEUDOFS_ATTRIBUTES=y
 CONFIG_READLINE_CMD_HISTORY=y
 CONFIG_READLINE_TABCOMPLETION=y

Reply via email to