summaryrefslogtreecommitdiff
path: root/apps/examples/elf/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/elf/Kconfig')
-rw-r--r--apps/examples/elf/Kconfig16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/examples/elf/Kconfig b/apps/examples/elf/Kconfig
index aca36f1b9..c62a98486 100644
--- a/apps/examples/elf/Kconfig
+++ b/apps/examples/elf/Kconfig
@@ -10,4 +10,20 @@ config EXAMPLES_ELF
Enable the ELF loader example
if EXAMPLES_ELF
+config EXAMPLES_ELF_DEVMINOR
+ int "ROMFS Minor Device Number"
+ default 0
+ ---help---
+ The minor device number of the ROMFS block. For example, the N in /dev/ramN.
+ Used for registering the RAM block driver that will hold the ROMFS file system
+ containing the ELF executables to be tested. Default: 0
+
+config EXAMPLES_ELF_DEVPATH
+ string "ROMFS Devie Path"
+ default "/dev/ram0"
+ ---help---
+ The path to the ROMFS block driver device. This must match EXAMPLES_ELF_DEVMINOR.
+ Used for registering the RAM block driver that will hold the ROMFS file system
+ containing the ELF executables to be tested. Default: "/dev/ram0"
+
endif