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:
patacongo 2012-06-21 17:01:49 +00:00
parent 7bdeed5352
commit 0dc4cc9ca5
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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 },