3d78fd75e4
It was actually trivial given that the script was already maintained as a package by enp@ and msp@; its usage requires one to manually partition the target disk and optionally mkswap in advance.
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
|
|
|
|
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
|