apps/examples: Make all file system tests dependent onf CONFIG_BUILD_FLAT

This commit is contained in:
Gregory Nutt 2015-06-07 10:24:46 -06:00
parent 90679a633a
commit ea0f1b9294
4 changed files with 4 additions and 3 deletions

View File

@ -6,6 +6,7 @@
config EXAMPLES_NXFLAT
bool "NXFLAT example"
default n
depends on NXFLAT && BUILD_FLAT
---help---
Enable the NXFLAT example

View File

@ -6,7 +6,7 @@
config EXAMPLES_ROMFS
bool "ROMFS example"
default n
depends on FS_ROMFS
depends on FS_ROMFS && BUILD_FLAT
---help---
Enable the ROMFS example

View File

@ -6,7 +6,7 @@
config EXAMPLES_THTTPD
bool "THTTPD web server example"
default n
depends on FS_ROMFS
depends on FS_ROMFS && BUILD_FLAT
---help---
Enable the THTTPD web server example

View File

@ -6,7 +6,7 @@
config EXAMPLES_UNIONFS
bool "Union file system example"
default n
depends on FS_ROMFS || FS_UNIONFS
depends on (FS_ROMFS || FS_UNIONFS) && BUILD_FLAT
---help---
Enable the Union File System example