Skip to content

Commit

Permalink
samples: ubx_gnss: remove deprecated Kconfigs
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
rexut committed Jun 21, 2024
1 parent 339572d commit c71e3c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/ubx_gnss/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c71e3c6

Please sign in to comment.