vm.mk 382 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
# 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
10
	@$(call add,BASE_PACKAGES,interactivesystem shadow-utils e2fsprogs)
11
ifeq (,$(filter-out i586 x86_64,$(ARCH)))	# useless on anything else
12 13
	@$(call add,BASE_PACKAGES,lilo)
endif
14 15

endif