1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 10:33:49 +01:00
RIOT/pkg/tlsf/Kconfig
Frederik Haxel 0c2cfe99e6 native64: Add Linux/x86_64 board
Adds a separate board for native64 instead of the `NATIVE_64BIT` workaround.
The files in `boards/native64` are more or less dummy files and just include
the `boards/native` logic (similar to `openlabs-kw41z-mini-256kib`).
The main logic for native is in `makefiles/arch/native.inc.mk`, `cpu/native`
and `boards/native`.

The remaining changes concern the build system, and change native board checks
to native CPU checks to cover both boards.
2024-02-05 22:01:40 +01:00

32 lines
820 B
Plaintext

# Copyright (c) 2021 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menuconfig PACKAGE_TLSF
bool "TLFS malloc/realloc/free/etc package"
depends on TEST_KCONFIG
depends on HAS_ARCH_32BIT || HAS_ARCH_64BIT
help
TLSF provides an implementation of malloc/realloc/free/etc.
if PACKAGE_TLSF
config MODULE_TLSF_MALLOC
bool "TLSF malloc"
depends on MODULE_NEWLIB || HAS_ARCH_NATIVE
select MODULE_TLSF_MALLOC_NEWLIB if MODULE_NEWLIB
select MODULE_TLSF_MALLOC_NATIVE if HAS_ARCH_NATIVE
config MODULE_TLSF_MALLOC_NEWLIB
bool
depends on TEST_KCONFIG
config MODULE_TLSF_MALLOC_NATIVE
bool
depends on TEST_KCONFIG
endif # PACKAGE_TLSF