7e219c14f1
distro/.base target used to pull in localboot syslinux config snippet which might be too early for some of the further distros; it's a quite fragile equilibrium which was shifted a bit by imz@ (see #26606). Feel free to reopen the discussion though, things might be tweaked so that localboot might be desirable on almost every image even if with lower priority...
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
# live images
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
distro/live: distro/.base use/live/base use/power/acpi/cpufreq
|
|
distro/rescue: distro/.base use/rescue use/syslinux/ui-menu
|
|
distro/dos: distro/.init use/dos use/syslinux/ui-menu
|
|
|
|
distro/live-systemd: distro/.base use/live/base use/systemd
|
|
|
|
distro/live-install: distro/.base use/live/install use/syslinux/localboot.cfg
|
|
|
|
distro/live-isomd5sum: distro/.base use/live/base use/isomd5sum
|
|
@$(call add,LIVE_PACKAGES,livecd-isomd5sum)
|
|
|
|
distro/live-builder: distro/.base use/repo/main \
|
|
use/live/base use/dev/mkimage use/power/acpi/button
|
|
@$(call add,LIVE_LISTS,$(call tags,base && (server || builder)))
|
|
@$(call add,LIVE_PACKAGES,livecd-tmpfs livecd-online-repo)
|
|
@$(call add,LIVE_PACKAGES,mkimage-profiles)
|
|
@$(call add,LIVE_PACKAGES,zsh sudo apt-repo)
|
|
@$(call add,MAIN_PACKAGES,rpm-build basesystem)
|
|
@$(call add,MAIN_PACKAGES,fakeroot sisyphus_check)
|
|
@$(call add,MAIN_PACKAGES,syslinux pciids memtest86+ mkisofs)
|
|
@$(call add,MAIN_PACKAGES,file make-initrd make-initrd-propagator)
|
|
@$(call add,MAIN_PACKAGES,livecd-tmpfs livecd-online-repo)
|
|
@$(call add,MAIN_PACKAGES,mkimage-profiles)
|
|
|
|
endif
|