diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-25 21:08:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-25 21:08:46 +0000 |
commit | 0df9a1cdbf8adfc732b3e1a8a449da10734708f0 (patch) | |
tree | ea938d9312f19bc3f17725fda5eb7927a1d3bd68 /include | |
parent | 1966c6fe33ac54a20ef7de460a1dbe27fa95681c (diff) | |
download | upstream-0df9a1cdbf8adfc732b3e1a8a449da10734708f0.tar.gz upstream-0df9a1cdbf8adfc732b3e1a8a449da10734708f0.tar.bz2 upstream-0df9a1cdbf8adfc732b3e1a8a449da10734708f0.zip |
add feature flag for display support. will be used as dependency for x.org
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9448 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-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 9156789c88..757d178ab3 100644 --- a/include/target.mk +++ b/include/target.mk @@ -117,6 +117,9 @@ ifeq ($(DUMP),1) ifneq ($(CONFIG_PCMCIA)$(CONFIG_PCCARD),) FEATURES += pcmcia endif + ifneq ($(CONFIG_VGA_CONSOLE)$(CONFIG_FB),) + FEATURES += display + endif # remove duplicates FEATURES:=$(sort $(FEATURES)) |