diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-21 05:34:08 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-21 05:34:59 +0200 |
commit | d7516b653567d1d15d2fcce8d9ef07452b6cdcb5 (patch) | |
tree | 8b9562c867caaaca085bcce64e273d23775493f9 | |
parent | a51f814fc75e2ab93bbbe496dba60d211526a25d (diff) |
xtensa: fix big endian kernel install
-rw-r--r-- | target/xtensa/Makefile | 3 |
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) |