diff --git a/.gitmodules b/.gitmodules index 80e8c2d..acbfc79 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "adbd"] path = adbd url = https://github.com/multirom-nexus6p/multirom_adbd.git +[submodule "kexec-tools-arm64"] + path = kexec-tools-arm64 + url = https://github.com/multirom-nexus6p/kexec-tools.git diff --git a/Android.mk b/Android.mk index 0ffb7fe..4c44c41 100644 --- a/Android.mk +++ b/Android.mk @@ -66,7 +66,11 @@ include $(multirom_local_path)/trampoline/Android.mk include $(multirom_local_path)/install_zip/Android.mk # Kexec-tools -include $(multirom_local_path)/kexec-tools/Android.mk +ifeq ($(TARGET_ARCH),arm64) + include $(multirom_local_path)/kexec-tools-arm64/Android.mk +else + include $(multirom_local_path)/kexec-tools/Android.mk +endif # adbd include $(multirom_local_path)/adbd/Android.mk diff --git a/kexec-tools-arm64 b/kexec-tools-arm64 new file mode 160000 index 0000000..98d3c38 --- /dev/null +++ b/kexec-tools-arm64 @@ -0,0 +1 @@ +Subproject commit 98d3c3837237cad9512146ad561e639cee8e3163