RGMP NSH configuration fixes; Move strerror strings to FLASH
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4859 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
7bdeed5352
commit
0dc4cc9ca5
@ -36,6 +36,7 @@
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
CONFIGURED_APPS += system/readline
|
||||
|
||||
# The NSH Library
|
||||
|
||||
|
@ -36,6 +36,7 @@
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
CONFIGURED_APPS += system/readline
|
||||
|
||||
# The NSH Library
|
||||
|
||||
|
@ -63,14 +63,14 @@ struct errno_strmap_s
|
||||
|
||||
/* This table maps all error numbers to descriptive strings.
|
||||
* The only assumption that the code makes with regard to this
|
||||
* this table is that it is order by error number.
|
||||
* this table is that it is ordered by error number.
|
||||
*
|
||||
* The size of this table is quite large. Its size can be
|
||||
* reduced by eliminating some of the more obscure error
|
||||
* strings.
|
||||
*/
|
||||
|
||||
struct errno_strmap_s g_errnomap[] =
|
||||
static const struct errno_strmap_s g_errnomap[] =
|
||||
{
|
||||
{ EPERM, EPERM_STR },
|
||||
{ ENOENT, ENOENT_STR },
|
||||
|
Loading…
x
Reference in New Issue
Block a user