From 0c8bd135f0eb8e5e9cb5072d88aefbc52f764cc8 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 3 Mar 2025 09:36:36 +0100 Subject: add support for no Linux kernel builds, use it for arcturus-ucbf54x --- mk/build.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mk/build.mk') diff --git a/mk/build.mk b/mk/build.mk index a3bd84233..aae4ffeca 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -179,9 +179,13 @@ ifeq ($(ADK_TARGET_OS_BAREMETAL),y) $(MAKE) -f mk/build.mk package/hostcompile toolchain/final endif ifeq ($(ADK_TARGET_OS_LINUX),y) +ifeq ($(ADK_TARGET_NO_KERNEL),y) + $(MAKE) -f mk/build.mk package/hostcompile toolchain/final package_clean package/compile root_clean package/install package_index +else $(MAKE) -f mk/build.mk package/hostcompile toolchain/final target/config-prepare target/compile package_clean package/compile root_clean package/install target/install package_index endif endif +endif package_index: ifeq ($(ADK_TARGET_PACKAGE_IPKG),y) -- cgit v1.2.3