-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compulab: imx8mp: firmware: Update Makefile
Signed-off-by: Valentin Raevsky <[email protected]>
- Loading branch information
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
files := bl31.bin lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_2d_dmem.bin lpddr4_pmu_train_2d_imem.bin tee.bin | ||
files=bl31.bin lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_2d_dmem.bin lpddr4_pmu_train_2d_imem.bin tee.bin | ||
fw_src=$(srctree)/board/compulab/plat/imx8mp/firmware | ||
|
||
all: $(files) | ||
|
||
$(files): | ||
for file in $(files); do \ | ||
uudecode --output-file $(O)/$$file $$file.uue; \ | ||
done; | ||
uudecode --output-file $@ $(fw_src)/$@.uue | ||
|
||
clean: | ||
for file in $(files); do \ | ||
rm -rf $(O)/$$file; \ | ||
done; | ||
rm -rf $(files) |