workstation: Use kernel un-def on aarch64 instead of rpi-un

Suggested by antohami@: rpi-un no longer updated and un-def can be
needed for some hardware.
This commit is contained in:
Mikhail Efremov 2024-01-22 14:28:34 +03:00 committed by Anton Midyukov
parent 345d3980f8
commit 044446ab02

View File

@ -20,18 +20,12 @@ mixin/alt-workstation: +systemd +systemd-optimal +pulse +nm \
use/docs/manual use/docs/indexhtml \
use/browser/firefox use/browser/firefox/esr \
use/cleanup/live-no-cleanupdb
ifeq (,$(filter-out x86_64,$(ARCH)))
ifeq (,$(filter-out x86_64 aarch64,$(ARCH)))
@$(call set,KFLAVOURS,un-def std-def)
@$(call add,MAIN_PACKAGES,kernel-headers-modules-un-def)
@$(call add,MAIN_PACKAGES,kernel-headers-un-def)
else
ifeq (,$(filter-out aarch64,$(ARCH)))
@$(call set,KFLAVOURS,rpi-un std-def)
@$(call add,MAIN_PACKAGES,kernel-headers-modules-rpi-un)
@$(call add,MAIN_PACKAGES,kernel-headers-rpi-un)
else
@$(call set,KFLAVOURS,std-def)
endif
endif
@$(call add,MAIN_PACKAGES,kernel-headers-modules-std-def)
@$(call add,MAIN_PACKAGES,kernel-headers-std-def)