d3636555b2
systemd would get pulled in via journal but both are really irrelevant for these rescue images.
21 lines
696 B
Makefile
21 lines
696 B
Makefile
use/rescue: use/stage2 sub/stage2@rescue use/syslinux/sdab.cfg \
|
|
use/firmware/full +wireless
|
|
@$(call add_feature)
|
|
@$(call add,RESCUE_LISTS,sysvinit)
|
|
@$(call add,RESCUE_PACKAGES,startup startup-rescue udev)
|
|
@$(call add,RESCUE_PACKAGES,grub2-pc lilo syslinux)
|
|
ifneq (,$(EFI_BOOTLOADER))
|
|
@$(call add,RESCUE_PACKAGES,grub2-efi)
|
|
endif
|
|
@$(call add,RESCUE_LISTS, openssh \
|
|
$(call tags,(base || extra || server || backup || misc) && \
|
|
(rescue || comm || network || security || archive)))
|
|
|
|
# rw slice, see also use/live/rw (don't use simultaneously)
|
|
ifeq (,$(EFI_BOOTLOADER))
|
|
use/rescue/rw: use/rescue use/syslinux
|
|
@$(call add,SYSLINUX_CFG,rescue_rw)
|
|
else
|
|
use/rescue/rw: use/rescue; @:
|
|
endif
|