Commit 27c912ed authored by Michael Shigorin's avatar Michael Shigorin

vm.mk: don't install lilo for non-x86

...as it's x86-specific.
parent 4b0121d2
......@@ -7,6 +7,9 @@ endif
ifeq (vm,$(IMAGE_CLASS))
vm/.bare: profile/bare
@$(call add,BASE_PACKAGES,interactivesystem lilo shadow-utils e2fsprogs)
@$(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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment