ve.mk 358 Bytes
Newer Older
1 2 3 4 5 6 7 8
# step 2: build up virtual environment's configuration

ifndef MKIMAGE_PROFILES
$(error this makefile is designed to be included in toplevel one)
endif

ifeq (ve,$(IMAGE_CLASS))

9
# no package management and networking
10 11 12
ve/.bare: profile/bare
	@$(call add,BASE_PACKAGES,basesystem)

Michael Shigorin's avatar
Michael Shigorin committed
13 14 15 16
# add those
ve/.base: ve/.bare
	@$(call add,BASE_PACKAGES,etcnet apt)

17
endif