diff options
author | Samuel Holland <samuel@sholland.org> | 2021-10-12 19:35:41 -0500 |
---|---|---|
committer | Andre Przywara <andre.przywara@arm.com> | 2021-10-25 14:49:58 +0100 |
commit | a13fa74a8e82d7c1d6c4c4945ae0dc4870a222c9 (patch) | |
tree | 67e993e52b9d97d6ed9240fe63593256d92967a7 /tools | |
parent | 00f82fcfba6ceff501bfd8e4fc2adb368f2905ac (diff) | |
download | u-boot-a13fa74a8e82d7c1d6c4c4945ae0dc4870a222c9.zip u-boot-a13fa74a8e82d7c1d6c4c4945ae0dc4870a222c9.tar.gz u-boot-a13fa74a8e82d7c1d6c4c4945ae0dc4870a222c9.tar.bz2 |
tools: mksunxiboot: Use sunxi_image header directly
When adding eGON support to mkimage, the struct boot_file_head
definition was moved to its own header. This is the only thing
mksunxiboot needed out of asm/arch/spl.h. Clean up the relative
include by switching to new header.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mksunxiboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mksunxiboot.c b/tools/mksunxiboot.c index a18c9d9..becc365 100644 --- a/tools/mksunxiboot.c +++ b/tools/mksunxiboot.c @@ -12,10 +12,10 @@ #include <stdlib.h> #include <string.h> #include <errno.h> +#include <sunxi_image.h> #include <sys/types.h> #include <sys/stat.h> #include "imagetool.h" -#include "../arch/arm/include/asm/arch-sunxi/spl.h" #define STAMP_VALUE 0x5F0A6C39 |