8790a90cee
The bin/pkgdups.sh script comes from m-p-d in considerably optimized form and is to be used with the pkglist files of interest passed as its arguments to produce a "hall of duplicates" among those. The tagged lists received some updates along the rescue image lines, most of those are actually inspired by http://rescuecd.pld-linux.org/ and to lesser extent a few articles on rescue/recovery/forensics software -- so some newcomers are even employed already.
32 lines
1.3 KiB
Makefile
32 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,rescue && (live || x11)))
|
|
@$(call add,LIVE_LISTS, \
|
|
$(call tags,(base || extra) && (archive || rescue || network)))
|
|
|
|
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
|