Change verbose and movable node build options to run-time options. Movable node usage: $ ./main -m Or: $ ./main --movable-node Verbose usage: $ ./main -v Or: $ ./main --verbose Signed-off-by: Rebecca Mckeever <remckee0@gmail.com> Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Link: https://lore.kernel.org/r/20220714031717.12258-1-remckee0@gmail.com
19 lines
436 B
Text
19 lines
436 B
Text
# SPDX-License-Identifier: GPL-2.0
|
|
# Definitions for user-provided arguments
|
|
|
|
# Simulate CONFIG_NUMA=y
|
|
ifeq ($(NUMA), 1)
|
|
CFLAGS += -D CONFIG_NUMA
|
|
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 memblock_dbg() messages
|
|
ifeq ($(MEMBLOCK_DEBUG), 1)
|
|
CFLAGS += -D MEMBLOCK_DEBUG
|
|
endif
|