summaryrefslogtreecommitdiff
path: root/target/bfin/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2025-03-02 09:15:56 +0000
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2025-03-02 10:18:36 +0100
commit5b29aec0b565aaebe618d7e480e7d6013c9516ba (patch)
treebc847ded280ad59e811da8134d24177f042ee20c /target/bfin/Makefile
parentc1e4b81e2b59cabf89a0cf1fa60418739171330f (diff)
arcturus-ucbf54x: add kernel compression support
Diffstat (limited to 'target/bfin/Makefile')
-rw-r--r--target/bfin/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/bfin/Makefile b/target/bfin/Makefile
index 084de21d1..9c28ea4d0 100644
--- a/target/bfin/Makefile
+++ b/target/bfin/Makefile
@@ -5,7 +5,11 @@ include $(ADK_TOPDIR)/rules.mk
include $(ADK_TOPDIR)/mk/kernel-build.mk
include $(ADK_TOPDIR)/mk/image.mk
+ifeq ($(ADK_TARGET_KERNEL_IMAGE_GZ),y)
+KERNEL:=$(LINUX_DIR)/arch/blackfin/boot/vmlinux.bin.gz
+else
KERNEL:=$(LINUX_DIR)/$(ADK_TARGET_KERNEL)
+endif
# target helper text
ifeq ($(ADK_TARGET_FS),archive)