774169c6cd
It was clear that "common" isn't very apt for packages that will get *everywhere*, and became apparent when the need for a "base+live packages" variable arrived with powerbutton feature. So: - the former COMMON_PACKAGES are now SYSTEM_PACKAGES; - COMMON_PACKAGES act as "BASE+LIVE_PACKAGES". Note that SYSTEM_PACKAGES also got factored out from stage2 based features into stage2 subprofile itself; cleanups were due as well.
22 lines
733 B
Makefile
22 lines
733 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,SYSTEM_PACKAGES,firmware-linux)
|
|
|
|
use/firmware/server: use/firmware
|
|
@$(call add,SYSTEM_PACKAGES,firmware-aic94xx-seq)
|
|
@$(call add,MAIN_PACKAGES_REGEXP,firmware-ql.*)
|
|
|
|
use/firmware/desktop: use/firmware
|
|
@$(call add,SYSTEM_PACKAGES,firmware-psb)
|
|
|
|
use/firmware/wireless: use/firmware
|
|
@$(call add,MAIN_PACKAGES,firmware-acx100)
|
|
@$(call add,MAIN_PACKAGES,firmware-i2400m)
|
|
@$(call add,MAIN_PACKAGES_REGEXP,firmware-ipw.*)
|
|
@$(call add,MAIN_PACKAGES_REGEXP,firmware-iwl.*)
|
|
@$(call add,MAIN_PACKAGES_REGEXP,firmware-rt.*)
|
|
@$(call add,MAIN_PACKAGES_REGEXP,firmware-zd.*)
|