Skip to content
Snippets Groups Projects
Commit eea89fea authored by Felix Fietkau's avatar Felix Fietkau
Browse files

build: add config symbols for different ARM arch levels


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

SVN-Revision: 36620
parent 526aedb7
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,7 @@ ifeq ($(DUMP),1)
ifneq ($(CONFIG_RTC_CLASS),)
FEATURES += rtc
endif
FEATURES += $(foreach v,v4 v5 v6 v7,$(if $(findstring -march=arm$(v),$(CFLAGS)),arm_$(v)))
# remove duplicates
FEATURES:=$(sort $(FEATURES))
......
......@@ -153,6 +153,7 @@ sub target_config_features(@) {
my $ret;
while ($_ = shift @_) {
/arm_v(\w+)/ and $ret .= "\tselect arm_v$1\n";
/broken/ and $ret .= "\tdepends on BROKEN\n";
/audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
/display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
......
......@@ -82,6 +82,18 @@ config armeb
select BIG_ENDIAN
bool
config arm_v4
bool
config arm_v5
bool
config arm_v6
bool
config arm_v7
bool
config avr32
select BIG_ENDIAN
bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment