2019-06-05 01:12:17 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2019-06-05 06:35:56 +08:00
|
|
|
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.
|
|
|
|
|
2019-06-27 22:49:23 +08:00
|
|
|
config MAKERLISP_COPYTORAM
|
|
|
|
bool "Copy to RAM"
|
|
|
|
default n
|
2019-06-28 19:37:02 +08:00
|
|
|
depends on BOOT_RUNFROMEXTSRAM
|
2019-06-27 22:49:23 +08:00
|
|
|
---help---
|
|
|
|
This option is available only when running from external SRAM
|
|
|
|
(CONFIG_BOOT_RUNFROMEXTSRAM). In that case there are two possible
|
|
|
|
options: (1) The configuration runs entirely out of SRAM and must
|
|
|
|
be copied into SRAM by a boot loader. Or (2) The configuration
|
|
|
|
boots out of FLASH, copies itself to SRAM, and runs from SRAM. This
|
|
|
|
configuration setting selects that latter option.
|
|
|
|
|
2019-06-27 04:37:19 +08:00
|
|
|
config MAKERLISP_SDBOOT
|
|
|
|
bool "Build SD boot loader"
|
|
|
|
default n
|
2020-03-04 01:02:43 +08:00
|
|
|
select EZ80_BOOTLOADER
|
2019-06-27 04:37:19 +08:00
|
|
|
---help---
|
2019-08-05 20:04:14 +08:00
|
|
|
Select this option only with the boards/makerlisp/sdboot
|
2019-06-27 04:37:19 +08:00
|
|
|
configuration. This will enable the components needed only by the
|
|
|
|
boot loader.
|
|
|
|
|
2019-06-05 01:12:17 +08:00
|
|
|
endif # ARCH_BOARD_MAKERLISP
|