nuttx/configs/pnev5180b/Kconfig
jjlange e5dfd805e6 Merged in jjlange/nuttx/lpc40xx (pull request #946)
Add support for LPC40xx family chips

* Corrected a few peripheral definitions and pin functions for the LPC17xx family.
    Added configuration options, chip definitions, and additional pin functions for the LPC40xx family.
    Added board configurations for Embedded Artists LPC4088 Quickstart board and LPC4088 Developer's kit.  These configurations are still something of a work in progress.  In particular, the LCD functionality is untested.

* First pass rename in *.c and *.h files.

* Renamed LPC17XX to LPC17XX_40XX in config files

* Rplaced LPC17xx with LPC17xx/LPC40xx in .c files

* Replaced LPC17xx with LPC17xx/LPC40xx in .h files

* Updated some documentation

* Working on moving directories

* moved arch/arm/src/lpc17xx and arch/arm/include/lpc17xx to lpc17xx_40xx

* Renamed LPC17_* constants / configuration options to LPC17_40_*

* Updated chip family name defines

* Renamed some chip-specific files

* Updated references to renamed files

* Updated references to lpc17_ to lpc17_40_

* Renamed source files from lpc17_* to lpc17_40_*

* Clean up white space

Approved-by: Gregory Nutt <gnutt@nuttx.org>
2019-07-11 16:50:00 +00:00

36 lines
959 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_PNEV5180B
config LPC17_40_ROMFS
bool "Automount baked-in ROMFS image"
default n
depends on FS_ROMFS
---help---
Specify which ROMFS image to mount where via LPC17_40_ROMFS_IMAGEFILE,
LPC17_40_ROMFS_DEV_MINOR, and LPC17_40_ROMFS_MOUNTPOINT. ROMFS images are
created with the genromfs Linux tool.
config LPC17_40_ROMFS_DEV_MINOR
int "Minor for the block device backing the data"
depends on LPC17_40_ROMFS
default 64
config LPC17_40_ROMFS_MOUNTPOINT
string "Mountpoint of the custom romfs image"
depends on LPC17_40_ROMFS
default "/mnt/romfs"
config LPC17_40_ROMFS_IMAGEFILE
string "ROMFS image file to include into build"
depends on LPC17_40_ROMFS
default "../romfs.img"
---help---
The path to specify is relative to the 'src' directory of the
currently selected configuration.
endif