mirror of
https://github.com/linux-msm/bootrr.git
synced 2026-02-25 13:12:03 -08:00
Some random smoke tests for db410c. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
31 lines
538 B
Makefile
31 lines
538 B
Makefile
.PHONY: all
|
|
|
|
all:
|
|
|
|
all-install :=
|
|
|
|
HELPERS := assert_device_present \
|
|
assert_driver_present \
|
|
assert_mmc_present \
|
|
assert_partition_found \
|
|
ensure_lib_firmware \
|
|
rproc-start \
|
|
rproc-stop
|
|
|
|
BOARDS := qcom,apq8016-sbc
|
|
|
|
define add-scripts
|
|
$(DESTDIR)$(prefix)/bin/$1: $1
|
|
@echo "INSTALL $$<"
|
|
@install -D -m 755 $$< $$@
|
|
|
|
all-install += $(DESTDIR)$(prefix)/bin/$1
|
|
endef
|
|
|
|
$(foreach v,${BOARDS},$(eval $(call add-scripts,$v)))
|
|
$(foreach v,${HELPERS},$(eval $(call add-scripts,$v)))
|
|
|
|
install: $(all-install)
|
|
|
|
clean:
|