summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-05-21 05:34:08 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2024-05-21 05:34:59 +0200
commitd7516b653567d1d15d2fcce8d9ef07452b6cdcb5 (patch)
tree8b9562c867caaaca085bcce64e273d23775493f9 /target
parenta51f814fc75e2ab93bbbe496dba60d211526a25d (diff)
xtensa: fix big endian kernel install
Diffstat (limited to 'target')
-rw-r--r--target/xtensa/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/target/xtensa/Makefile b/target/xtensa/Makefile
index da41fc839..99031d0ae 100644
--- a/target/xtensa/Makefile
+++ b/target/xtensa/Makefile
@@ -21,6 +21,9 @@ QEMU_ARGS+=-M kc705-nommu
QEMU_ARGS+=-cpu de212 -m 256
KERNEL:=$(LINUX_DIR)/arch/xtensa/boot/Image.elf
endif
+ifeq ($(ADK_TARGET_CPU_XTENSA_KC705_BE),y)
+KERNEL:=$(LINUX_DIR)/arch/xtensa/boot/uImage
+endif
# target helper text
ifeq ($(ADK_TARGET_FS),archive)