diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 12:01:01 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 12:01:01 +0000 |
commit | f3e2331e18708d7080cbd12cbb967e076fd747d1 (patch) | |
tree | a4591b666464fb73af8d9de45f00110ab47842de /include/target.mk | |
parent | 4242b42880c535007e68cc1bedbe83a4aef36814 (diff) | |
download | upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.tar.gz upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.tar.bz2 upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.zip |
add a feature flag for device tree support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 38893
Diffstat (limited to 'include/target.mk')
-rw-r--r-- | include/target.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/target.mk b/include/target.mk index 467ef35766..acb9adf584 100644 --- a/include/target.mk +++ b/include/target.mk @@ -167,6 +167,9 @@ ifeq ($(DUMP),1) .SILENT: $(TMP_CONFIG) .PRECIOUS: $(TMP_CONFIG) + ifneq ($(CONFIG_OF),) + FEATURES += dt + endif ifneq ($(CONFIG_GENERIC_GPIO)$(CONFIG_GPIOLIB),) FEATURES += gpio endif |