remove unnecessary config in apps Kconfig and Makefile
authorjc_.kim <jc_.kim@samsung.com>
Mon, 27 Mar 2017 01:25:21 +0000 (10:25 +0900)
committerjc_.kim <jc_.kim@samsung.com>
Mon, 27 Mar 2017 01:25:21 +0000 (10:25 +0900)
remove unnecessary if~endif in apps Kconfig and unnecessary configs in makefile

14 files changed:
apps/netutils/dhcpc/Kconfig
apps/netutils/ftpd/Kconfig
apps/netutils/json/Kconfig
apps/netutils/netlib/Kconfig
apps/netutils/smtp/Kconfig
apps/netutils/telnetd/Kconfig
apps/netutils/tftpc/Kconfig
apps/system/flash_eraseall/Kconfig
apps/system/install/Kconfig
apps/system/mdio/Kconfig
apps/system/poweroff/Kconfig
apps/system/ramtron/Kconfig
apps/system/vi/Kconfig
apps/system/vi/Makefile

index be1d1eb..8073437 100644 (file)
@@ -10,6 +10,3 @@ config NETUTILS_DHCPC
        # depends on NET_UDP && NET_BROADCAST && NET_IPv4
        ---help---
                Enable support for the DHCP client.
-
-if NETUTILS_DHCPC
-endif
index 7f273fd..e7f5cff 100644 (file)
@@ -8,6 +8,3 @@ config NETUTILS_FTPD
        default n
        ---help---
                Enable support for the FTP server.
-
-if NETUTILS_FTPD
-endif
index 09a6bf8..9ea263b 100644 (file)
@@ -13,6 +13,3 @@ config NETUTILS_JSON
                http://www.drdobbs.com/web-development/an-embeddable-lightweight-xml-rpc-server/184405364.
                This code was taken from http://sourceforge.net/projects/cjson/ and
                adapted for NuttX by Darcy Gong.
-
-if NETUTILS_JSON
-endif
index 790fce4..368fea9 100644 (file)
@@ -8,6 +8,3 @@ config NETUTILS_NETLIB
        default n
        ---help---
                Enable support for the network support library.
-
-if NETUTILS_NETLIB
-endif
index 169ebc8..7e1fc2d 100644 (file)
@@ -8,6 +8,3 @@ config NETUTILS_SMTP
        default n
        ---help---
                Enable support for SMTP.
-
-if NETUTILS_SMTP
-endif
index 6da0e6f..f786927 100644 (file)
@@ -9,6 +9,3 @@ config NETUTILS_TELNETD
        select NETDEV_TELNET
        ---help---
                Enable support for the Telnet daemon.
-
-if NETUTILS_TELNETD
-endif
index 0e0a167..4448ced 100644 (file)
@@ -8,6 +8,3 @@ config NETUTILS_TFTPC
        default n
        ---help---
                Enable support for the TFTP client.
-
-if NETUTILS_TFTPC
-endif
index 382cae8..836567b 100644 (file)
@@ -9,7 +9,3 @@ config SYSTEM_FLASH_ERASEALL
        depends on MTD && NSH_BUILTIN_APPS && !BUILD_PROTECTED && !BUILD_KERNEL
        ---help---
                Enable support for the FLASH eraseall tool.
-
-if SYSTEM_FLASH_ERASEALL
-endif
-
index aa136a4..33e0556 100644 (file)
@@ -8,7 +8,3 @@ config SYSTEM_INSTALL
        default n
        ---help---
                Enable support for the FLASH installation tool.
-
-if SYSTEM_INSTALL
-endif
-
index c3a7882..cda719c 100644 (file)
@@ -9,6 +9,3 @@ config SYSTEM_MDIO
        depends on NETDEV_PHY_IOCTL
        ---help---
                Enable the MDIO tool
-
-if SYSTEM_MDIO
-endif
index e2ae3c4..cfbcb84 100644 (file)
@@ -11,6 +11,3 @@ config SYSTEM_POWEROFF
                provides the NSH power-off command only.  It requires board-specific
                support to actually implement the power-off.
 
-if SYSTEM_POWEROFF
-endif
-
index 5d65286..158f50f 100644 (file)
@@ -8,7 +8,3 @@ config SYSTEM_RAMTRON
        default n
        ---help---
                Enable support for the NSH RAMTRON command.
-
-if SYSTEM_RAMTRON
-endif
-
index 874b1a0..1587c8f 100644 (file)
@@ -58,19 +58,4 @@ config SYSTEM_VI_DEBUGLEVEL
                readable debug output, syslog'ing should sent to some device other
                than /dev/console (which is the default).
 
-if NSH_BUILTIN_APPS
-
-config SYSTEM_VI_STACKSIZE
-       int "Builtin task stack size"
-       default 2048
-       ---help---
-               Size of the task to configure when started VI from NSH
-
-config SYSTEM_VI_PRIORITY
-       int "Builtin task priority"
-       default 100
-       ---help---
-               Priority of the task to configure when started VI from NSH
-
-endif # NSH_BUILTIN_APPS
 endif # SYSTEM_VI
index 8f5d313..48547c4 100644 (file)
@@ -60,12 +60,7 @@ endif
 
 # VI-Workalike Editor
 
-CONFIG_SYSTEM_VI_STACKSIZE ?= 2048
-CONFIG_SYSTEM_VI_PRIORITY ?= 100
-
 APPNAME = vi
-PRIORITY = $(CONFIG_SYSTEM_VI_PRIORITY)
-STACKSIZE = $(CONFIG_SYSTEM_VI_STACKSIZE)
 
 ASRCS =
 CSRCS =