mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Ensure that whenever U-Boot is built: - The chosen signing key and is converted to the expected format and installed in the build tree. - Infix's environment extensions are installed in the build tree
15 lines
419 B
Makefile
15 lines
419 B
Makefile
include $(sort $(wildcard $(BR2_EXTERNAL_INFIX_PATH)/package/*/*.mk))
|
|
include $(BR2_EXTERNAL_INFIX_PATH)/board/common/common.mk
|
|
-include $(BR2_EXTERNAL_INFIX_PATH)/board/$(patsubst "%",%,$(BR2_ARCH))/board.mk
|
|
|
|
.PHONY: local.mk
|
|
local.mk:
|
|
@echo "Installing local override for certain packages ..."
|
|
@(cd $O && ln -s $(BR2_EXTERNAL_INFIX_PATH)/local.mk .)
|
|
|
|
.PHONY: run
|
|
run:
|
|
@$(BR2_EXTERNAL_INFIX_PATH)/qemu/qemu.sh $O
|
|
|
|
|