summaryrefslogtreecommitdiff
path: root/nuttx/sched/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/Kconfig')
-rw-r--r--nuttx/sched/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/nuttx/sched/Kconfig b/nuttx/sched/Kconfig
index 02f35d5a0..5068a4e96 100644
--- a/nuttx/sched/Kconfig
+++ b/nuttx/sched/Kconfig
@@ -261,14 +261,20 @@ config USER_INITPATH
config INIT_SYMTAB
string "Symbol table"
default "NULL"
+ depends on !BUILD_PROTECTED && !BUILD_KERNEL
---help---
The name of othe global array that holds the exported symbol table.
The special string "NULL" may be provided if there is no symbol
table. Quotation marks will be stripped when config.h is generated.
+ NOTE: This setting cannot be used in protected or kernel builds.
+ Any kernel mode symbols tables would not be usable for resolving
+ symbols in user mode executables.
+
config INIT_NEXPORTS
string "Symbol table size"
default "0"
+ depends on !BUILD_PROTECTED && !BUILD_KERNEL
---help---
The size of the symbol table. NOTE that is is logically a numeric
value but is represent by a string. That allows you to put
@@ -276,6 +282,10 @@ config INIT_NEXPORTS
symbol table size. Quotation marks will be stripped when config.h
is generated.
+ NOTE: This setting cannot be used in protected or kernel builds.
+ Any kernel mode symbols tables would not be usable for resolving
+ symbols in user mode executables.
+
endif # INIT_FILEPATH
config RR_INTERVAL