diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-03 09:36:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-03 09:36:36 +0100 |
commit | 0c8bd135f0eb8e5e9cb5072d88aefbc52f764cc8 (patch) | |
tree | 53024aff7f03fd9173c4d0197306e14de72fe446 /mk/build.mk | |
parent | cf8099bef716953dc528e5e42bc93ef719cb41b4 (diff) |
add support for no Linux kernel builds, use it for arcturus-ucbf54x
Diffstat (limited to 'mk/build.mk')
-rw-r--r-- | mk/build.mk | 4 |
1 files changed, 4 insertions, 0 deletions
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) |