mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
The qemu.sh script can fail, due to misconfiguration or other problems, before it actually starts qemu. Therefore, move the help text to right before starting the emulator. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
14 lines
352 B
Makefile
14 lines
352 B
Makefile
include $(sort $(wildcard $(BR2_EXTERNAL_INFIX_PATH)/package/*/*.mk))
|
|
-include $(BR2_EXTERNAL_INFIX_PATH)/board/$(patsubst "%",%,$(BR2_ARCH))/board.mk
|
|
|
|
.PHONY:
|
|
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
|
|
|
|
|