Commit da988cd9 authored by Anton Midyukov's avatar Anton Midyukov

kernel: set default KFLAVOURS=6.6 for sisyphus

In Sisyphus, by default we switch to a kernel with flavor equal to the major version of the kernel. Switching the latest flavour every two months is problematic, so we will temporarily disable this functionality. Link: https://lore.altlinux.org/sisyphus/0ee447d2-93d0-4644-bfd6-94bba43a1c9e@ya.ru/T/#t
parent ac1500ca
...@@ -12,7 +12,11 @@ else ...@@ -12,7 +12,11 @@ else
ifeq (,$(filter-out armh,$(ARCH))) ifeq (,$(filter-out armh,$(ARCH)))
@$(call try,KFLAVOURS,mp) @$(call try,KFLAVOURS,mp)
else else
@$(call try,KFLAVOURS,std-def) ifeq (,$(filter-out sisyphus,$(BRANCH)))
@$(call try,KFLAVOURS,6.6)
else
@$(call try,KFLAVOURS,un-def)
endif
endif endif
endif endif
endif endif
...@@ -21,8 +25,10 @@ endif ...@@ -21,8 +25,10 @@ endif
use/kernel/latest: use/kernel; @: use/kernel/latest: use/kernel; @:
ifeq (,$(filter-out aarch64 armh i586 ppc64le x86_64,$(ARCH))) ifeq (,$(filter-out aarch64 armh i586 ppc64le x86_64,$(ARCH)))
ifneq (,$(filter-out sisyphus,$(BRANCH)))
@$(call set,KFLAVOURS,un-def) @$(call set,KFLAVOURS,un-def)
endif endif
endif
# r8168 is a kludge, never install it by default # r8168 is a kludge, never install it by default
use/kernel/net: use/kernel/net:
......
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