b2cfbc3f1f
Yes these bits are related to distro/ prefixed images still the overgeneralization in distro.mk didn't pay off but rather hid a bug with the only boot/isolinux in use having no dependency on use/syslinux (which is required). Maybe this will get revisited when we have other kinds of bootable images with other bootloaders (vm/ ones care for themselves as of today).
10 lines
221 B
Makefile
10 lines
221 B
Makefile
ifndef MKIMAGE_PROFILES
|
|
$(error this makefile is designed to be included in toplevel one)
|
|
endif
|
|
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
# install media bootloader
|
|
boot/isolinux: use/syslinux
|
|
@$(call set,BOOTLOADER,isolinux)
|
|
endif
|