mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-08 10:32:26 +08:00
RGMP NSH configuration fixes; Move strerror strings to FLASH
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4859 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user