38152b0f59
In these tough times there are no extra resources to waste for wars or some extra rescue; so it is imperative to provide some lean and mean help, you know. IOW a common base has been split out and a more tight rescue image configuration has been added on top of that so as to try and fit altlinux-p7-sysv-tde.iso for i586 into CD-R.
28 lines
895 B
Makefile
28 lines
895 B
Makefile
use/rescue/.base: use/stage2 sub/stage2@rescue
|
|
@$(call add_feature)
|
|
@$(call add,RESCUE_LISTS,sysvinit)
|
|
@$(call add,RESCUE_PACKAGES,startup startup-rescue udev)
|
|
@$(call add,RESCUE_LISTS, openssh)
|
|
|
|
use/rescue/base: use/rescue/.base
|
|
@$(call add,RESCUE_LISTS,\
|
|
$(call tags,base && (rescue || network || security || archive)))
|
|
|
|
use/rescue: use/rescue/.base use/syslinux/sdab.cfg \
|
|
use/firmware/full +wireless
|
|
@$(call add,RESCUE_PACKAGES,grub2-pc lilo syslinux)
|
|
ifneq (,$(EFI_BOOTLOADER))
|
|
@$(call add,RESCUE_PACKAGES,grub2-efi)
|
|
endif
|
|
@$(call add,RESCUE_LISTS,\
|
|
$(call tags,(base || extra || server || backup || misc || fs) \
|
|
&& (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
|