From 436499a58e2183dc4dd1d56ab96e9f148e1725b3 Mon Sep 17 00:00:00 2001 From: Maria Pana Date: Sat, 23 Nov 2024 14:02:57 +0200 Subject: [PATCH] elfloader-basic: Clone `app-elfloader` Update build scripts to also clone the `app-elfloader` repository into the `repos/apps` directory if absent. Signed-off-by: Maria Pana --- elfloader-basic/build.fc.x86_64 | 1 + elfloader-basic/build.qemu.x86_64 | 1 + 2 files changed, 2 insertions(+) diff --git a/elfloader-basic/build.fc.x86_64 b/elfloader-basic/build.fc.x86_64 index fb3871c..454c70f 100755 --- a/elfloader-basic/build.fc.x86_64 +++ b/elfloader-basic/build.fc.x86_64 @@ -1,6 +1,7 @@ #!/bin/sh test -d "../repos/unikraft" || git clone https://github.com/unikraft/unikraft ../repos/unikraft +test -d "../repos/apps/elfloader" || git clone https://github.com/unikraft/app-elfloader ../repos/apps/elfloader test -d "../repos/libs/libelf" || git clone https://github.com/unikraft/lib-libelf ../repos/libs/libelf make distclean diff --git a/elfloader-basic/build.qemu.x86_64 b/elfloader-basic/build.qemu.x86_64 index ec19c61..4204c85 100755 --- a/elfloader-basic/build.qemu.x86_64 +++ b/elfloader-basic/build.qemu.x86_64 @@ -1,6 +1,7 @@ #!/bin/sh test -d "../repos/unikraft" || git clone https://github.com/unikraft/unikraft ../repos/unikraft +test -d "../repos/apps/elfloader" || git clone https://github.com/unikraft/app-elfloader ../repos/apps/elfloader test -d "../repos/libs/libelf" || git clone https://github.com/unikraft/lib-libelf ../repos/libs/libelf make distclean