eren-terzioglu commented on PR #19283: URL: https://github.com/apache/nuttx/pull/19283#issuecomment-4878004715
@jerpelea, I checked out this branch and removed these 4 commits and made head this commit: ``` commit a0357b3a6537946d9d7e9a40ff3df405efe3af35 (HEAD -> bp-19280) Author: Xiang Xiao <[email protected]> Date: Wed Jun 24 17:53:33 2026 +0800 !include/fcntl.h: align open flags with Linux values Align the NuttX open(2) flag constants with the Linux asm-generic values so that the FUSE wire protocol and other cross-platform interfaces work without conversion. All code that used '(flags & O_RDONLY)' as a bitmask check (always 0 now that O_RDONLY=0) has been updated to use '(flags & O_ACCMODE)' comparisons. The NUTTX_O_* constants in include/nuttx/fs/hostfs.h are updated to match, and the sim hostfs open flag mapping is fixed. Signed-off-by: Xiang Xiao <[email protected]> ``` This build steps applied: ``` make -j distclean ./tools/configure.sh hpm6360evk:nsh make -j ``` And same error happened: ``` ~/nuttxspace/nuttx$ make -j8 Create version.h LN: platform/board to /home/eren/nuttxspace/apps/platform/dummy Register: hello Register: sh Register: nsh LD: nuttx riscv-none-elf-ld: /home/eren/nuttxspace/nuttx/nuttx section `.text' will not fit in region `ilm' riscv-none-elf-ld: region `ilm' overflowed by 968 bytes Memory region Used Size Region Size %age Used ilm: 132040 B 128 KB 100.74% dlm: 11360 B 128 KB 8.67% axi_sram: 0 B 256 KB 0.00% axi_sram_noncacheable: 0 B 256 KB 0.00% ahb_sram: 0 B 32 KB 0.00% make[1]: *** [Makefile:195: nuttx] Error 1 make: *** [tools/Unix.mk:569: nuttx] Error 2 ``` Seems error is unrelated these commits. When I bisect it (between releases/13.0 to master) this commit is first build error: ``` commit 361e7e29ae7f6ae6492c21b0d4a1339224d41247 Author: Jukka Laitinen <[email protected]> Date: Wed Jun 10 11:14:26 2026 +0300 arch, sched/signal: Fix compilation with ENABLE_PARTIAL_SIGNALS=y Correct build errors when CONFIG_ENABLE_ALL_SIGNALS is not defined - sched makefiles: Move pending-signal helpers from the ENABLE_ALL_SIGNALS-only list to the !DISABLE_ALL_SIGNALS list so signal dispatch is available in PARTIAL builds sched: make SIG_PREALLOC_ACTIONS, SIG_ALLOC_ACTIONS and SIG_DEFAULT depend on ENABLE_ALL_SIGNALS - sched: fix ifdefs around pending-signal queue access and signal-mask for PARTIAL/DISABLE modes - arch: gate SYS_signal_handler / _return calls and SYSCALL_LOOKUP(signal) with ENABLE_ALL_SIGNALS Signed-off-by: Jukka Laitinen <[email protected]> ``` NX branch: jerpelea:bp-19280 (without last 4 commits) Apps branch: commit 5bf9b4ea9ac9facafa0ca10f3f95f0098a17db77 (HEAD -> releases/13.0, origin/releases/13.0) -- 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]
