30d0340d56
Thanks Serg Markov for bringing my attention to this: http://www.opennet.ru/openforum/vsluhforumID3/86552.html#61 While the official distros might skip some filesystems for support reasons there's no reason for community distros to do so either. Let's try that with icewm.iso... NB: installer has a misfeature of dropping jfs/reiserfs support in runtime unless "expertmode" magic word is on the kernel bootargs string (#27763, #17368).
20 lines
637 B
Makefile
20 lines
637 B
Makefile
# desktop distributions
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
distro/.desktop-base: distro/.installer use/syslinux/ui/vesamenu use/x11/xorg
|
|
@$(call set,INSTALLER,desktop)
|
|
|
|
distro/.desktop-mini: distro/.desktop-base use/x11/xdm +power; @:
|
|
|
|
distro/.desktop-network: distro/.desktop-mini +vmguest
|
|
@$(call add,SYSTEM_PACKAGES,fonts-ttf-google-croscore-arimo)
|
|
@$(call add,BASE_LISTS, \
|
|
$(call tags,(base || desktop) && (l10n || network)))
|
|
|
|
distro/icewm: distro/.desktop-network use/lowmem use/install2/fs +icewm; @:
|
|
distro/tde: distro/.desktop-mini +tde; @:
|
|
distro/ltsp-tde: distro/tde +ltsp; @:
|
|
distro/ltsp-icewm: distro/icewm +ltsp; @:
|
|
|
|
endif
|