Changelog
Latest Changes
- Branch:
- develop
- Commit:
contrib: zephyr: Fix Kconfig warnings related to POSIX_TIMERS by Gaetan Perrot at 2025-10-16 05:22:20
The build failed due to Kconfig dependency conflicts caused by LIBCSP selecting POSIX_TIMERS and POSIX_MONOTONIC_CLOCK without satisfying their direct dependency on POSIX_SYSTEM_INTERFACES. This change ensures that POSIX_SYSTEM_INTERFACES is enabled when LIBCSP is selected, preventing the following warnings and build abort: - POSIX_TIMERS has direct dependencies POSIX_SYSTEM_INTERFACES with value n - POSIX_MONOTONIC_CLOCK has direct dependencies POSIX_TIMERS && POSIX_SYSTEM_INTERFACES with value n Remove POSIX_MONOTONIC_CLOCK and enable POSIX_SYSTEM_INTERFACES when selecting LIBCSP. Signed-off-by: Gaetan Perrot <gaetan.perrot@spacecubics.com>