Commit e42252d8 authored by Anton Midyukov's avatar Anton Midyukov

kernel: set default KFLAVOUR for armh to mp

This kernel is best supported for armh.
parent 0036f724
...@@ -48,12 +48,6 @@ else ...@@ -48,12 +48,6 @@ else
endif endif
endif endif
ifeq (,$(filter-out armh,$(ARCH)))
mixin/vm-archdep::
@$(call set,KFLAVOURS,un-def mp)
endif
ifeq (,$(filter-out armh aarch64,$(ARCH))) ifeq (,$(filter-out armh aarch64,$(ARCH)))
mixin/vm-archdep:: use/bootloader/uboot use/no-sleep use/arm-rpi4; @: mixin/vm-archdep:: use/bootloader/uboot use/no-sleep use/arm-rpi4; @:
endif endif
......
...@@ -9,10 +9,14 @@ else ...@@ -9,10 +9,14 @@ else
ifeq (,$(filter-out loongarch64,$(ARCH))) ifeq (,$(filter-out loongarch64,$(ARCH)))
@$(call try,KFLAVOURS,loongarch) @$(call try,KFLAVOURS,loongarch)
else else
ifeq (,$(filter-out armh,$(ARCH)))
@$(call try,KFLAVOURS,mp)
else
@$(call try,KFLAVOURS,std-def) @$(call try,KFLAVOURS,std-def)
endif endif
endif endif
endif endif
endif
@$(call xport,KFLAVOURS) @$(call xport,KFLAVOURS)
use/kernel/latest: use/kernel; @: use/kernel/latest: use/kernel; @:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment