02791834f9
This is thanks to the fact that alterator-based install2 needs alterator-browser-qt which needs X11 which needs working device drivers -- and at least AMD C60 APU would only yield a nice dotted white screen without that firmware. Roughly the same for X11 bearing LiveCD images.
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# step 2: build up distribution's configuration
|
|
|
|
ifndef MKIMAGE_PROFILES
|
|
$(error this makefile is designed to be included in toplevel one)
|
|
endif
|
|
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
# request particular image subprofile inclusion
|
|
sub/%:
|
|
@$(call add,SUBPROFILES,$(@:sub/%=%))
|
|
|
|
# install media bootloader
|
|
boot/%:
|
|
@$(call set,BOOTLOADER,$*)
|
|
|
|
# fundamental targets
|
|
|
|
distro/.init: profile/bare
|
|
@$(call try,META_PREPARER,mkimage-profiles)
|
|
@$(call try,META_APP_ID,$(IMAGE_NAME))
|
|
@$(call set,META_PUBLISHER,ALT Linux Team)
|
|
|
|
# NB: the last flavour in KFLAVOURS gets to be the default one;
|
|
# the kernel packages regexp evaluation has to take place at build stage
|
|
distro/.base: distro/.init use/kernel
|
|
@$(call set,META_SYSTEM_ID,LINUX)
|
|
@$(call set,META_VOL_ID,ALT Linux $(IMAGE_NAME)/$(ARCH))
|
|
@$(call set,META_VOL_SET,ALT Linux)
|
|
|
|
# something marginally useful (as a network-only installer)
|
|
# NB: doesn't carry stage3 thus cannot use/bootloader
|
|
distro/installer: distro/.base use/syslinux/localboot.cfg \
|
|
use/install2 use/install2/kms use/firmware use/install2/kvm
|
|
@$(call set,INSTALLER,altlinux-generic)
|
|
|
|
distro/.installer: distro/installer use/bootloader/grub use/repo/main; @:
|
|
|
|
endif
|