ath25: fix ELF image generation
Commit21f460a5db
("ath25: fix duplicate LZMA compression"), when attempting to restore ELF artifact generation, copiedover the raw kernel image twice. Because of that, the .elf artifact was actually a duplicate of raw image. Fix that by copying over .elf suffixed kernel image instead. Fixes:21f460a5db
("ath25: fix duplicate LZMA compression") Signed-off-by: Lech Perczak <lech.perczak@gmail.com>
This commit is contained in:
parent
85b41cbd3b
commit
611291383a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ endef
|
||||||
define Build/copy-kernel
|
define Build/copy-kernel
|
||||||
rm -f $@ $@.elf
|
rm -f $@ $@.elf
|
||||||
cp $< $@
|
cp $< $@
|
||||||
cp $< $@.elf
|
cp $<.elf $@.elf
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/elf-kernel
|
define Build/elf-kernel
|
||||||
|
|
Loading…
Reference in a new issue