mkimage-profiles/lib/vm.mk
Michael Shigorin 27c912ed0f vm.mk: don't install lilo for non-x86
...as it's x86-specific.
2016-03-15 09:37:00 +03:00

16 lines
378 B
Makefile

# step 2: build up virtual machine's configuration
ifndef MKIMAGE_PROFILES
$(error this makefile is designed to be included in toplevel one)
endif
ifeq (vm,$(IMAGE_CLASS))
vm/.bare: profile/bare
@$(call add,BASE_PACKAGES,interactivesystem shadow-utils e2fsprogs)
ifeq (,$(filter i586 x86_64,$(ARCH))) # useless on anything else
@$(call add,BASE_PACKAGES,lilo)
endif
endif