Fix one more dependency upon having a symbol table
This commit is contained in:
parent
c1e8021335
commit
1f3db86106
@ -3926,6 +3926,10 @@ Configurations
|
||||
Update: I don't believe that this HSMCI error occurs if file system
|
||||
debug output is enabled.
|
||||
|
||||
2014-9-11: Everything seems to be working quite nicely witn the ROMFS
|
||||
file system. A considerable amount of testing has been done and
|
||||
there are no known defects as of this writing.
|
||||
|
||||
nsh:
|
||||
|
||||
This configuration directory provide the NuttShell (NSH). This is a
|
||||
|
@ -53,16 +53,18 @@
|
||||
* following must also be defined:
|
||||
*/
|
||||
|
||||
/* Symbol table used by exec[l|v] */
|
||||
#ifdef CONFIG_EXECFUNCS_HAVE_SYMTAB
|
||||
/* Symbol table used by exec[l|v] */
|
||||
|
||||
#ifndef CONFIG_EXECFUNCS_SYMTAB
|
||||
# error "CONFIG_EXECFUNCS_SYMTAB must be defined"
|
||||
#endif
|
||||
# ifndef CONFIG_EXECFUNCS_SYMTAB
|
||||
# error "CONFIG_EXECFUNCS_SYMTAB must be defined"
|
||||
# endif
|
||||
|
||||
/* Number of Symbols in the Table */
|
||||
/* Number of Symbols in the Table */
|
||||
|
||||
#ifndef CONFIG_EXECFUNCS_NSYMBOLS
|
||||
# error "CONFIG_EXECFUNCS_NSYMBOLS must be defined"
|
||||
# ifndef CONFIG_EXECFUNCS_NSYMBOLS
|
||||
# error "CONFIG_EXECFUNCS_NSYMBOLS must be defined"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user