All ZNEO configurations converted to use the mconf/Kconfig tool
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5401 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
a9cdbb61ea
commit
cb890fd484
@ -426,3 +426,5 @@
|
|||||||
various DHCPC improvements(Darcy Gong).
|
various DHCPC improvements(Darcy Gong).
|
||||||
* apps/nshlib/nsh_apps.c: Fix compilation errors whenCONFIG_NSH_DISABLEBG=y.
|
* apps/nshlib/nsh_apps.c: Fix compilation errors whenCONFIG_NSH_DISABLEBG=y.
|
||||||
From Freddie Chopin.
|
From Freddie Chopin.
|
||||||
|
* Rename CONFIG_PCODE and CONFIG_FICL as CONFIG_INTERPRETERS_PCODE and
|
||||||
|
CONFIG_INTERPRETERS_FICL for consistency with other configuration naming.
|
||||||
|
@ -39,6 +39,14 @@ include $(APPDIR)/Make.defs
|
|||||||
|
|
||||||
# Pascal Add-On Example
|
# Pascal Add-On Example
|
||||||
|
|
||||||
|
ifeq ($(WINTOOL),y)
|
||||||
|
INCDIROPT = -w
|
||||||
|
endif
|
||||||
|
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" \
|
||||||
|
"." \
|
||||||
|
"$(APPDIR)$(DELIM)interpreters$(DELIM)pcode$(DELIM)include" \
|
||||||
|
"$(APPDIR)$(DELIM)interpreters$(DELIM)pcode$(DELIM)insn$(DELIM)include"}
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = pashello.c device.c
|
CSRCS = pashello.c device.c
|
||||||
|
|
||||||
|
@ -43,8 +43,8 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
#include "apps/pcode/insn/pexec.h"
|
#include "pexec.h"
|
||||||
#include "apps/pcode/pedefs.h"
|
#include "pedefs.h"
|
||||||
#include "pashello.h"
|
#include "pashello.h"
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -7,7 +7,7 @@ comment "Interpreters"
|
|||||||
|
|
||||||
source "$APPSDIR/interpreters/ficl/Kconfig"
|
source "$APPSDIR/interpreters/ficl/Kconfig"
|
||||||
|
|
||||||
config PCODE
|
config INTERPRETERS_PCODE
|
||||||
bool "Pascal p-code interpreter"
|
bool "Pascal p-code interpreter"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
@ -16,6 +16,6 @@ config PCODE
|
|||||||
configuration implies that you have performed the required installation of the
|
configuration implies that you have performed the required installation of the
|
||||||
Pascal run-time code.
|
Pascal run-time code.
|
||||||
|
|
||||||
if PCODE
|
if INTERPRETERS_PCODE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -34,10 +34,10 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
ifeq ($(CONFIG_PCODE),y)
|
ifeq ($(CONFIG_INTERPRETERS_PCODE),y)
|
||||||
CONFIGURED_APPS += interpreters/pcode
|
CONFIGURED_APPS += interpreters/pcode
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_FICL),y)
|
ifeq ($(CONFIG_INTERPRETERS_FICL),y)
|
||||||
CONFIGURED_APPS += interpreters/ficl
|
CONFIGURED_APPS += interpreters/ficl
|
||||||
endif
|
endif
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# see misc/tools/kconfig-language.txt.
|
# see misc/tools/kconfig-language.txt.
|
||||||
#
|
#
|
||||||
|
|
||||||
config FICL
|
config INTERPRETERS_FICL
|
||||||
bool "Ficl Forth interpreter"
|
bool "Ficl Forth interpreter"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
@ -11,6 +11,6 @@ config FICL
|
|||||||
apps/interpreters/ficl directory. Use of this configuration assumes
|
apps/interpreters/ficl directory. Use of this configuration assumes
|
||||||
that you have performed the required installation of the Ficl run-time code.
|
that you have performed the required installation of the Ficl run-time code.
|
||||||
|
|
||||||
if FICL
|
if INTERPRETERS_FICL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user