2234e6b70f
The current refind support implementation doesn't boot with either USB Flash or CD-ROM for me (due to the different actual volumes, FAT vs El Torito, accordingly). And when it does, a host with Secure Boot present and not disabled yet would turn the unsigned kernel down unlike ELILO (due to rEFInd using "natural" calls to boot it). Both issues are reported upstream; in the meanwhile let's migrate a single test image but build the rest with elilo.
46 lines
1.8 KiB
Makefile
46 lines
1.8 KiB
Makefile
# regular build/usage images
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
# TODO: use/plymouth/live when luks+plymouth is done, see also #28255
|
|
distro/.regular-desktop: distro/.base +live +wireless use/live/ru \
|
|
use/live/install use/live/repo use/x11/3d-free use/systemd \
|
|
use/firmware/wireless use/efi/signed use/luks \
|
|
+vmguest use/memtest use/branding use/syslinux/ui/gfxboot
|
|
@$(call add,LIVE_PACKAGES,openssh strace alterator-standalone)
|
|
@$(call add,LIVE_PACKAGES,cpufreq-simple)
|
|
@$(call add,LIVE_PACKAGES,livecd-online-repo apt-repo)
|
|
@$(call add,LIVE_PACKAGES,xdg-user-dirs)
|
|
@$(call add,LIVE_PACKAGES,synaptic-usermode)
|
|
@$(call add,LIVE_PACKAGES,firefox-ru)
|
|
@$(call add,LIVE_PACKAGES,net-tools)
|
|
@$(call add,LIVE_PACKAGES,uvcview)
|
|
@$(call add,LIVE_PACKAGES,powertop)
|
|
@$(call add,LIVE_LISTS,$(call tags,rescue extra))
|
|
@$(call add,THE_BRANDING,indexhtml notes alterator bootloader)
|
|
@$(call set,KFLAVOURS,std-def)
|
|
@$(call try,SAVE_PROFILE,yes)
|
|
|
|
distro/.regular-gtk: distro/.regular-desktop use/x11/gdm2.20; @:
|
|
|
|
distro/regular-icewm: distro/.regular-gtk +icewm use/efi/refind; @:
|
|
distro/regular-xfce: distro/.regular-gtk use/x11/xfce; @:
|
|
distro/regular-lxde: distro/.regular-gtk use/x11/lxde; @:
|
|
|
|
distro/regular-mate: distro/.regular-gtk
|
|
@$(call add,LIVE_LISTS,$(call tags,(desktop || mobile) && (mate || nm)))
|
|
|
|
distro/regular-e17: distro/.regular-gtk use/x11/e17; @:
|
|
@$(call add,LIVE_PACKAGES,xterm xorg-xnest)
|
|
@$(call add,THE_KMODULES,sound)
|
|
|
|
distro/regular-cinnamon: distro/.regular-desktop use/x11/cinnamon
|
|
@$(call set,META_VOL_ID,ALT Linux $(IMAGE_NAME)) # see also #28271
|
|
|
|
distro/regular-tde: distro/.regular-desktop +tde
|
|
@$(call add,LIVE_LISTS,$(call tags,desktop nm))
|
|
|
|
distro/regular-kde4: distro/.regular-desktop use/x11/kde4 use/x11/kdm4; @:
|
|
distro/regular-razorqt: distro/.regular-desktop +razorqt; @:
|
|
|
|
endif
|