From 14e13bddf55ae537e788c23224937feda0efaa3e Mon Sep 17 00:00:00 2001 From: Razvan Deaconescu Date: Mon, 29 Aug 2022 11:27:54 +0300 Subject: [PATCH] Config.uk: Add dependencies for POSIX libraries Release 0.10 added `posix-socket` and `posix-event` internal libraries to the Unikraft core. Consequently, libraries depending on networking functionality need to be updated to include `posix-socket` and `posix-event`. This commit adds `LIBPOSIX_SOCKET` and `LIBPOSIX_EVENT` dependency to `Config.uk`. Signed-off-by: Razvan Deaconescu Reviewed-by: Maria Sfiraiala Approved-by: Alexander Jung Tested-by: Unikraft CI GitHub-Pull-Request-Closes: #6 --- Config.uk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Config.uk b/Config.uk index 5d2683e..d0786bd 100644 --- a/Config.uk +++ b/Config.uk @@ -13,6 +13,8 @@ menuconfig LIBPYTHON3 select LIBSYSCALL_SHIM select LIBVFSCORE select LIBPTHREAD_EMBEDDED + select LIBPOSIX_SOCKET + select LIBPOSIX_EVENT select LIBLWIP select LWIP_DHCP select LWIP_DNS -- 2.39.5