Fix scrambled Kconfig Make.defs files

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5087 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-09-04 16:04:31 +00:00
parent 853ac27add
commit bd5219bc86
2 changed files with 22 additions and 11 deletions

View File

@ -34,18 +34,18 @@
# #
############################################################################ ############################################################################
ifeq ($(CONFIG_VSN_POWEROFF),y) ifeq ($(CONFIG_SYSTEM_FREE),y)
CONFIGURED_APPS += vsn/poweroff CONFIGURED_APPS += system/free
endif endif
ifeq ($(CONFIG_VSN_RAMTRON),y) ifeq ($(CONFIG_SYSTEM_I2CTOOL),y)
CONFIGURED_APPS += vsn/ramtron CONFIGURED_APPS += system/i2c
endif endif
ifeq ($(CONFIG_VSN_SDCARD),y) ifeq ($(CONFIG_SYSTEM_INSTALL),y)
CONFIGURED_APPS += vsn/sdcard CONFIGURED_APPS += system/install
endif endif
ifeq ($(CONFIG_VSN_SYSINFO),y) ifeq ($(CONFIG_SYSTEM_READLINE),y)
CONFIGURED_APPS += vsn/sysinfo CONFIGURED_APPS += system/readline
endif endif

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# apps/namedapps/Make.defs # apps/vsn/Make.defs
# Adds selected applications to apps/ build # Adds selected applications to apps/ build
# #
# Copyright (C) 2012 Gregory Nutt. All rights reserved. # Copyright (C) 2012 Gregory Nutt. All rights reserved.
@ -34,7 +34,18 @@
# #
############################################################################ ############################################################################
ifeq ($(CONFIG_NAMEDAPP),y) ifeq ($(CONFIG_VSN_POWEROFF),y)
CONFIGURED_APPS += namedapp CONFIGURED_APPS += vsn/poweroff
endif endif
ifeq ($(CONFIG_VSN_RAMTRON),y)
CONFIGURED_APPS += vsn/ramtron
endif
ifeq ($(CONFIG_VSN_SDCARD),y)
CONFIGURED_APPS += vsn/sdcard
endif
ifeq ($(CONFIG_VSN_SYSINFO),y)
CONFIGURED_APPS += vsn/sysinfo
endif