JianyuWang0623 commented on PR #3755: URL: https://github.com/apache/nuttx-apps/pull/3755#issuecomment-5434362438
The `sim/lua` build failure on `Linux (sim-02)` in CI is unrelated to this PR. Root cause: the kernel renamed the Kconfig option `PSEUDOFS_SOFTLINKS` → `FS_LINKS`, but `interpreters/luamodules/luv/Kconfig` in apps still uses the old name (`depends on PSEUDOFS_SOFTLINKS`). Since that symbol no longer exists, `CONFIG_LUA_LUV_MODULE` becomes unselectable and gets silently dropped by `savedefconfig`, leaving the `sim/lua` defconfig dirty and failing the build. The fix is already up as #3753 (`fs: rename PSEUDOFS_SOFTLINKS to FS_LINKS`), which renames the dependency in `luv/Kconfig` (and other apps files). Once that merges, re-running CI here should be green. This PR itself only touches `system/nxinit/`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
