kernel: use different default flavour for riscv64

This commit is contained in:
Anton Midyukov 2019-05-13 17:21:21 +07:00 committed by Michael Shigorin
parent 73ed631be1
commit 51280120ed

View File

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