Rename CONFIG_NXCONSOLE* to CONFIG_NXTERM*

This commit is contained in:
Gregory Nutt 2014-09-20 14:18:08 -06:00
parent 71464f2b7d
commit e02f2f9373
3 changed files with 5 additions and 5 deletions

View File

@ -818,7 +818,7 @@ examples/nxconsole
an NX winbdow. Prerequisite configuration settings for this test include: an NX winbdow. Prerequisite configuration settings for this test include:
CONFIG_NX=y -- NX graphics must be enabled CONFIG_NX=y -- NX graphics must be enabled
CONFIG_NXCONSOLE=y -- The NX console driver must be built CONFIG_NXTERM=y -- The NX console driver must be built
CONFIG_NX_MULTIUSER=y -- NX multi-user support must be enabled. CONFIG_NX_MULTIUSER=y -- NX multi-user support must be enabled.
CONFIG_DISABLE_MQUEUE=n -- Message queue support must be available. CONFIG_DISABLE_MQUEUE=n -- Message queue support must be available.
CONFIG_DISABLE_SIGNALS=n -- Signals are needed CONFIG_DISABLE_SIGNALS=n -- Signals are needed

View File

@ -65,8 +65,8 @@
/* Can't do the NxConsole example if the NxConsole driver is not built */ /* Can't do the NxConsole example if the NxConsole driver is not built */
#ifndef CONFIG_NXCONSOLE #ifndef CONFIG_NXTERM
# error "NxConsole is not enabled (CONFIG_NXCONSOLE=y)" # error "NxConsole is not enabled (CONFIG_NXTERM=y)"
#endif #endif
/* NxConsole requires NX Multi-user mode */ /* NxConsole requires NX Multi-user mode */
@ -111,7 +111,7 @@
# elif !defined(CONFIG_NX_DISABLE_16BPP) # elif !defined(CONFIG_NX_DISABLE_16BPP)
# define CONFIG_EXAMPLES_NXCON_BPP 16 # define CONFIG_EXAMPLES_NXCON_BPP 16
//#elif !defined(CONFIG_NX_DISABLE_24BPP) //#elif !defined(CONFIG_NX_DISABLE_24BPP)
//# define CONFIG_NXCONSOLE_BPP 24 //# define CONFIG_NXTERM_BPP 24
# elif !defined(CONFIG_NX_DISABLE_32BPP) # elif !defined(CONFIG_NX_DISABLE_32BPP)
# define CONFIG_EXAMPLES_NXCON_BPP 32 # define CONFIG_EXAMPLES_NXCON_BPP 32
# else # else

View File

@ -78,7 +78,7 @@
# elif !defined(CONFIG_NX_DISABLE_16BPP) # elif !defined(CONFIG_NX_DISABLE_16BPP)
# define CONFIG_EXAMPLES_NXTEXT_BPP 16 # define CONFIG_EXAMPLES_NXTEXT_BPP 16
//#elif !defined(CONFIG_NX_DISABLE_24BPP) //#elif !defined(CONFIG_NX_DISABLE_24BPP)
//# define CONFIG_NXCONSOLE_BPP 24 //# define CONFIG_NXTERM_BPP 24
# elif !defined(CONFIG_NX_DISABLE_32BPP) # elif !defined(CONFIG_NX_DISABLE_32BPP)
# define CONFIG_EXAMPLES_NXTEXT_BPP 32 # define CONFIG_EXAMPLES_NXTEXT_BPP 32
# else # else