From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
rename musl submodule to musl_0.9.12 and add new submodule musl_1.1.24 This patch renames existing submodule musl to musl_0.9.12 and adds new submodule musl_1.1.24 pointing to new musl repo copy. It also adds a symlink 'musl' pointing to musl_0.9.12. These changes are aimed to help us upgrade musl from version 0.9.12 to 1.1.24. This patch is equivalent of following chain of commands: ``` git submodule deinit musl git rm musl git submodule add https://github.com/cloudius-systems/musl musl_0.9.12 pushd musl_0.9.12 && git checkout v0.9.12 && popd && git add musl_0.9.12 ln -s musl_0.9.12/ musl git submodule add https://github.com/osvunikernel/musl musl_1.1.24 pushd musl_1.1.24 && git checkout v1.1.24 && popd && git add musl_1.1.24 ``` Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/.gitmodules b/.gitmodules --- a/.gitmodules +++ b/.gitmodules @@ -9,9 +9,12 @@ [submodule "modules/httpserver/swagger-ui"] path = modules/httpserver-html5-gui/swagger-ui url = ../../cloudius-systems/swagger-ui.git -[submodule "musl"] - path = musl - url = ../../cloudius-systems/musl.git [submodule "modules/httpserver/osv-gui"] path = modules/httpserver-html5-gui/osv-gui url = ../../cloudius-systems/osv-gui.git +[submodule "musl_0.9.12"] + path = musl_0.9.12 + url = https://github.com/cloudius-systems/musl +[submodule "musl_1.1.24"] + path = musl_1.1.24 + url = https://github.com/osvunikernel/musl diff --git a/musl b/musl --- a/musl +++ b/musl @@ -1 +0,0 @@ -Subproject commit 372a948b8139c6583045b2cd91b6b91fcb2e5881 diff --git a/musl b/musl --- a/musl +++ b/musl @@ -0,0 +1 @@ +musl_0.9.12/ \ No newline at end of file diff --git a/musl_0.9.12 b/musl_0.9.12 --- a/musl_0.9.12 +++ b/musl_0.9.12 @@ -0,0 +1 @@ +Subproject commit 372a948b8139c6583045b2cd91b6b91fcb2e5881 diff --git a/musl_1.1.24 b/musl_1.1.24 --- a/musl_1.1.24 +++ b/musl_1.1.24 @@ -0,0 +1 @@ +Subproject commit ea9525c8bcf6170df59364c4bcd616de1acf8703 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000ae9bdf05afd39daa%40google.com.
