summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/scripts/Makefile.include
blob: 4401f79bed4c8d0efdd89a95db918930a452a01e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# SPDX-License-Identifier: GPL-2.0
# Definitions for user-provided arguments

# Simulate CONFIG_NUMA=y
ifeq ($(NUMA), 1)
	CFLAGS += -D CONFIG_NUMA
endif

# Simulate movable NUMA memory regions
ifeq ($(MOVABLE_NODE), 1)
	CFLAGS += -D MOVABLE_NODE
endif

# Use 32 bit physical addresses.
# Remember to install 32-bit version of dependencies.
ifeq ($(32BIT_PHYS_ADDR_T), 1)
	CFLAGS += -m32 -U CONFIG_PHYS_ADDR_T_64BIT
	LDFLAGS += -m32
endif

# Enable verbose testing output
ifeq ($(VERBOSE), 1)
	CFLAGS += -D VERBOSE
endif

# Enable memblock_dbg() messages
ifeq ($(MEMBLOCK_DEBUG), 1)
	CFLAGS += -D MEMBLOCK_DEBUG
endif