e3571f276a
The newly-introduced STAGE1_KCONFIG variable serves to keep those kernel configuration options that are required to be present in the kernel to boot.
22 lines
656 B
Makefile
22 lines
656 B
Makefile
# "1" is not a typo
|
|
use/stage2: sub/stage1
|
|
@$(call add_feature)
|
|
@$(call add,STAGE1_PACKAGES,file make-initrd make-initrd-propagator propagator)
|
|
@$(call xport,STAGE1_KCONFIG)
|
|
|
|
use/stage2/kms:
|
|
@$(call add,STAGE1_KMODULES_REGEXP,drm.*)
|
|
|
|
# install mount.cifs to stage1
|
|
use/stage2/cifs-install:
|
|
@$(call add,STAGE1_PACKAGES,cifs-utils)
|
|
|
|
# eth0 instead of enp0s3
|
|
use/stage2/net-eth: use/stage2
|
|
@$(call add,STAGE1_PACKAGES,udev-rule-generator-net)
|
|
@$(call add,STAGE2_PACKAGES,udev-rule-generator-net livecd-net-eth)
|
|
|
|
# NB: sub/stage2 isn't used standalone but rather
|
|
# as a base for various livecd modifications
|
|
# (currently install2, live, rescue)
|