kernel: use different default flavour for aarch64, armh

This commit is contained in:
Anton Midyukov 2019-04-29 23:47:04 +07:00 committed by Michael Shigorin
parent ffa7919f60
commit aee8c1721b

View File

@ -9,9 +9,13 @@ use/kernel:
@$(call add_feature)
ifeq (,$(filter-out e2k%,$(ARCH)))
@$(call try,KFLAVOURS,elbrus-def)
else
ifeq (,$(filter-out aarch64 armh,$(ARCH)))
@$(call try,KFLAVOURS,mp)
else
@$(call try,KFLAVOURS,std-def)
endif
endif
# r8168 is a kludge, never install it by default
use/kernel/net: