From c71e3c688e140e5d7bedcf9e4b09fd6806e0b9dc Mon Sep 17 00:00:00 2001 From: Stephan Linz Date: Fri, 21 Jun 2024 01:01:39 +0200 Subject: [PATCH] samples: ubx_gnss: remove deprecated Kconfigs The following Kconfigs have been deprecated for more than 2 releases, remove them: - CONFIG_MINIMAL_LIBC_MALLOC Instead the new generic Kconfigs will used: - CONFIG_COMMON_LIBC_MALLOC This fixes following exemplary build error message since Zephyr commit c22c98e51033379347cd8c681db34cf7afd33e57: /.../workspace/bridle/samples/ubx_gnss/prj.conf:31: warning: attempt to assign the value 'n' to the undefined symbol MINIMAL_LIBC_MALLOC error: Aborting due to Kconfig warnings Signed-off-by: Stephan Linz --- samples/ubx_gnss/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ubx_gnss/prj.conf b/samples/ubx_gnss/prj.conf index 9de99a1c48..7fabb1a7be 100644 --- a/samples/ubx_gnss/prj.conf +++ b/samples/ubx_gnss/prj.conf @@ -28,7 +28,7 @@ CONFIG_UBXLIB_GNSS=y # Libc CONFIG_MINIMAL_LIBC=y -CONFIG_MINIMAL_LIBC_MALLOC=n +CONFIG_COMMON_LIBC_MALLOC=n # Memory CONFIG_MAIN_STACK_SIZE=8192