diff options
author | Andre Przywara <andre.przywara@arm.com> | 2016-11-10 12:13:23 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-11-13 15:54:15 -0500 |
commit | d8c0d99e6607145c4cb65e39842328adfcb7ce46 (patch) | |
tree | 0689c8bf32640dbef9965f76ca41c0be5c3da76c | |
parent | 38cacdab3b5a6d8efd16a4b2620f7ab72144a624 (diff) | |
download | u-boot-imx-d8c0d99e6607145c4cb65e39842328adfcb7ce46.zip u-boot-imx-d8c0d99e6607145c4cb65e39842328adfcb7ce46.tar.gz u-boot-imx-d8c0d99e6607145c4cb65e39842328adfcb7ce46.tar.bz2 |
tools: fix mksunxiboot build for tools-all target
Commit fed329aebe3a ("tools: add mksunxiboot to tools-all target") added
mksunxiboot to the tools-all target, but used the CONFIG_SUNXI symbol
to enable its build. Now commit aec9a0f19f64 ("sunxi: Rename CONFIG_SUNXI
to CONFIG_ARCH_SUNXI"), merged before that, renamed that symbol, so that
the first patch basically gets ineffective.
Adjust the symbol name in tools/Makefile to make it build again.
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 400588c..9edb504 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -13,7 +13,7 @@ CONFIG_CMD_NET = y CONFIG_XWAY_SWAP_BYTES = y CONFIG_NETCONSOLE = y CONFIG_SHA1_CHECK_UB_IMG = y -CONFIG_SUNXI = y +CONFIG_ARCH_SUNXI = y endif subdir-$(HOST_TOOLS_ALL) += easylogo |