84fd73e5db
Maybe firmware feature should be merged into kernel feature as the firmware binaries added by it are only used by kernel but let's clean up a bit at a time.
29 lines
1003 B
Makefile
29 lines
1003 B
Makefile
# NB: if the firmware is needed in installer,
|
|
# it should be installed to stage1's *instrumental* chroot
|
|
# for mkmodpack to use
|
|
|
|
use/firmware:
|
|
@$(call add_feature)
|
|
@$(call add,SYSTEM_PACKAGES,firmware-linux)
|
|
|
|
use/firmware/full: use/firmware/server use/firmware/laptop
|
|
|
|
use/firmware/cpu: use/firmware
|
|
@$(call add,THE_PACKAGES,microcode-data-intel microcode_ctl)
|
|
|
|
use/firmware/server: use/firmware
|
|
@$(call add,SYSTEM_PACKAGES,firmware-aic94xx-seq)
|
|
@$(call add,THE_PACKAGES_REGEXP,firmware-ql.*)
|
|
|
|
# NB: individual firmwarez would sometimes conflict
|
|
# with ones newly merged into firmware-linux
|
|
# FIXME: kernel modules rather belong to use/hardware
|
|
use/firmware/wireless: use/firmware use/kernel/wireless
|
|
@$(call add,THE_PACKAGES,firmware-acx100)
|
|
@$(call add,THE_PACKAGES_REGEXP,firmware-prism.*)
|
|
@$(call add,THE_PACKAGES_REGEXP,firmware-ipw.*)
|
|
@$(call add,THE_PACKAGES_REGEXP,firmware-zd.*)
|
|
|
|
use/firmware/laptop: use/firmware/wireless use/firmware/cpu
|
|
@$(call add,KMODULES,acpi_call)
|