From: Junhwan Park Date: Wed, 17 May 2017 05:01:10 +0000 (+0900) Subject: examples/sysio_test: add dependencies on driver subsystems X-Git-Tag: 1.1_Public_Release~166^2~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ce1ae99f31b68009fc30a5c1e1fd8a8e172b7926;p=rtos%2Ftinyara.git examples/sysio_test: add dependencies on driver subsystems Depending on the dependencies of the sysio driver, this example might cause a build error. This patch adds the dependencies of the driver. Change-Id: I7dfb0d284af1adbe4a82dd2ae47d4196cfe5185a Signed-off-by: Junhwan Park --- diff --git a/apps/examples/sysio_test/Kconfig b/apps/examples/sysio_test/Kconfig index f1d47ea..d22b8f7 100644 --- a/apps/examples/sysio_test/Kconfig +++ b/apps/examples/sysio_test/Kconfig @@ -5,22 +5,17 @@ config EXAMPLES_SYSIO_TEST bool "\"System I/O Test (GPIO,PWM,I2C,SPI,UART) \" example" + select GPIO + select SPI + select SPI_EXCHANGE + select SERIAL + select I2C + select I2C_USERIO + select PWM default n ---help--- Enable the \"System I/O Test\" example -if EXAMPLES_SYSIO_TEST - -config EXAMPLES_SYSIO_TEST_PROGNAME - string "Program name" - default "sysio" - depends on BUILD_KERNEL - ---help--- - This is the name of the program that will be use when the NSH ELF - program is installed. - -endif - config USER_ENTRYPOINT string default "sysio_main" if ENTRY_SYSIO_TEST