diff options
| author | Jagan Teki <[email protected]> | 2019-05-08 00:22:10 +0530 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2019-06-26 21:11:27 +0800 |
| commit | 8f06f0cee3d35f3ac05c5c43f1b2040241192b4d (patch) | |
| tree | a13dc64105bd02128948005de4a8f2181b25ee62 | |
| parent | 8fc48229c831561f2d69e5abd21dcfe5de89dde1 (diff) | |
Makefile: clean image.map
binman tools for creating single image build will create image.map
at the end, which has information about binman image node details.
current u-boot, is unable to clean this image.map so add a command
entry in clean target in Makefile.
Signed-off-by: Jagan Teki <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1847,7 +1847,8 @@ clean: $(clean-dirs) -o -name modules.builtin -o -name '.tmp_*.o.*' \ -o -name 'dsdt.aml' -o -name 'dsdt.asl.tmp' -o -name 'dsdt.c' \ -o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \ - -type f -print | xargs rm -f + -type f -print | xargs rm -f \ + image.map # mrproper - Delete all generated files, including .config # |
