40179da030
libs/libc/misc/Make.defs: For platforms whose CPP tool does not support a variable number arguments to pre-processor macros, we may still need to build the debug functions even when CONFIG_DEBUG_FEATURES is not selected. For example, __alert() may be needed is CONFIG_ARCH_STACKDUMP is set. configs/makerlisp: Add an sdboot configuration that will load .hex files from the SD card.
24 lines
571 B
Plaintext
24 lines
571 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_MAKERLISP
|
|
|
|
config MAKERLISP_VGA
|
|
bool "VGA Controller attached?"
|
|
default n
|
|
---help---
|
|
Select this option if you have an I/O Controller and a VGA vide card
|
|
connected.
|
|
|
|
config MAKERLISP_SDBOOT
|
|
bool "Build SD boot loader"
|
|
default n
|
|
---help---
|
|
Select this option only with the configs/makerlisp/sdboot
|
|
configuration. This will enable the components needed only by the
|
|
boot loader.
|
|
|
|
endif # ARCH_BOARD_MAKERLISP
|