New stuff: * distro/live-icewm -- basic icewm livecd with autologin; * distro/live-rescue -- yet another gparted^Wrescue CD. A better part of base+rescue tagged pkglist split off into extra+rescue where the content belongs. Thanks ruslandh@ for proposing to do a graphical rescue with some particular tools (albeit qt4-fsarchiver clearly needs more work).
31 lines
1.3 KiB
Makefile
31 lines
1.3 KiB
Makefile
# live images
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
distro/dos: distro/.init use/dos use/syslinux/ui-menu
|
|
distro/rescue: distro/.base use/rescue use/syslinux/ui-menu
|
|
distro/live: distro/.base use/live/base use/power/acpi/cpufreq
|
|
distro/live-systemd: distro/.base use/live/base use/systemd
|
|
distro/live-install: distro/.base use/live/install use/syslinux/localboot.cfg
|
|
distro/live-icewm: distro/live use/live/icewm
|
|
|
|
distro/live-rescue: distro/live-icewm
|
|
@$(call add,LIVE_LISTS,$(call tags,extra && (rescue || network)))
|
|
@$(call add,LIVE_LISTS,$(call tags,rescue && (live || x11)))
|
|
|
|
distro/live-isomd5sum: distro/.base use/live/base use/isomd5sum
|
|
@$(call add,LIVE_PACKAGES,livecd-isomd5sum)
|
|
|
|
distro/live-builder: pkgs := livecd-tmpfs livecd-online-repo mkimage-profiles
|
|
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,$(pkgs))
|
|
@$(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,$(pkgs))
|
|
|
|
endif
|