diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-20 09:46:45 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-20 09:46:45 +0000 |
commit | 697a309ede936843ca8e1510827f0e7544237873 (patch) | |
tree | e0cd86d40efcbda38c405d27b8b68872faaf7a8a | |
parent | 03164df6fe4b39e09366e096808b3934cfc55693 (diff) |
add a gpio feature for devices supporting the generic GPIO interface
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10879 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/target.mk | 3 | ||||
-rwxr-xr-x | scripts/metadata.pl | 1 | ||||
-rw-r--r-- | target/Config.in | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/target.mk b/include/target.mk index 4f10a3db2..ce842da79 100644 --- a/include/target.mk +++ b/include/target.mk @@ -126,6 +126,9 @@ ifeq ($(DUMP),1) .SILENT: $(TMP_CONFIG) .PRECIOUS: $(TMP_CONFIG) + ifneq ($(CONFIG_GENERIC_GPIO),) + FEATURES += gpio + endif ifneq ($(CONFIG_PCI),) FEATURES += pci endif diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 6d7534519..51dcc425b 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -152,6 +152,7 @@ sub target_config_features(@) { while ($_ = shift @_) { /broken/ and $ret .= "\tdepends BROKEN\n"; /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n"; + /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n"; /pci/ and $ret .= "\tselect PCI_SUPPORT\n"; /usb/ and $ret .= "\tselect USB_SUPPORT\n"; /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n"; diff --git a/target/Config.in b/target/Config.in index aabe9c303..505fcc962 100644 --- a/target/Config.in +++ b/target/Config.in @@ -11,6 +11,9 @@ config LINUX_2_6 config DISPLAY_SUPPORT bool +config GPIO_SUPPORT + bool + config PCI_SUPPORT bool |