You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
439 B
22 lines
439 B
3 years ago
|
# 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))
|
||
|
|
||
|
# no package management and networking
|
||
|
ve/.bare: profile/bare
|
||
|
@$(call add,BASE_PACKAGES,basesystem)
|
||
|
|
||
|
# add package management
|
||
|
ve/.apt: ve/.bare
|
||
|
@$(call add,BASE_PACKAGES,apt)
|
||
|
|
||
|
# also add networking
|
||
|
ve/.base: ve/.apt
|
||
|
@$(call add,BASE_PACKAGES,etcnet)
|
||
|
|
||
|
endif
|