payload: rename dummy payload to test payload

Use a more neutral term more representative of this payload intent.

Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
This commit is contained in:
Damien Le Moal
2019-01-18 16:09:14 +09:00
committed by Anup Patel
parent 868ad0b0e5
commit 42283461d3
6 changed files with 10 additions and 9 deletions

View File

@@ -7,13 +7,13 @@
# SPDX-License-Identifier: BSD-2-Clause
#
firmware-bins-$(FW_PAYLOAD) += payloads/dummy.bin
firmware-bins-$(FW_PAYLOAD) += payloads/test.bin
dummy-y += dummy_head.o
dummy-y += dummy_main.o
test-y += test_head.o
test-y += test_main.o
%/dummy.o: $(foreach obj,$(dummy-y),%/$(obj))
%/test.o: $(foreach obj,$(test-y),%/$(obj))
$(call merge_objs,$@,$^)
%/dummy.dep: $(foreach dep,$(dummy-y:.o=.dep),%/$(dep))
%/test.dep: $(foreach dep,$(test-y:.o=.dep),%/$(dep))
$(call merge_deps,$@,$^)