diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2024-08-29 20:40:04 +0200 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-26 22:00:36 +0000 |
commit | 6f0e977165cfd5dc3bb29d64ecad49d9f43153a9 (patch) | |
tree | 62d5f19e0daeadced366afc4ef9f100673b3ff2a | |
parent | 31ea376b587578897cdeff7b085286668cf9a7a1 (diff) | |
download | edk2-6f0e977165cfd5dc3bb29d64ecad49d9f43153a9.tar.gz |
Drop git submodule for Berkeley softfloat library
This code is no longer in use so it can be dropped.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | .pytool/CISettings.py | 2 | ||||
-rw-r--r-- | ReadMe.rst | 7 |
3 files changed, 0 insertions, 12 deletions
diff --git a/.gitmodules b/.gitmodules index 6d29190a14..60cb590af8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ [submodule "CryptoPkg/Library/OpensslLib/openssl"] path = CryptoPkg/Library/OpensslLib/openssl url = https://github.com/openssl/openssl -[submodule "SoftFloat"] - path = ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 - url = https://github.com/ucb-bar/berkeley-softfloat-3.git [submodule "UnitTestFrameworkPkg/Library/CmockaLib/cmocka"] path = UnitTestFrameworkPkg/Library/CmockaLib/cmocka url = https://github.com/tianocore/edk2-cmocka.git diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index e14b77d4e2..46f61db284 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -187,8 +187,6 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag '''
rs = []
rs.append(RequiredSubmodule(
- "ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3", False))
- rs.append(RequiredSubmodule(
"CryptoPkg/Library/OpensslLib/openssl", False))
rs.append(RequiredSubmodule(
"UnitTestFrameworkPkg/Library/CmockaLib/cmocka", False))
diff --git a/ReadMe.rst b/ReadMe.rst index dc74f6d4a9..51e90e5445 100644 --- a/ReadMe.rst +++ b/ReadMe.rst @@ -88,7 +88,6 @@ licenses: The EDK II open source project uses content from upstream projects as git submodules
that are covered by additional licenses.
-- `ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 <https://github.com/ucb-bar/berkeley-softfloat-3/blob/b64af41c3276f97f0e181920400ee056b9c88037/COPYING.txt>`__
- `BaseTools/Source/C/BrotliCompress/brotli <https://github.com/google/brotli/blob/666c3280cc11dc433c303d79a83d4ffbdd12cc8d/LICENSE>`__
- `CryptoPkg/Library/OpensslLib/openssl <https://github.com/openssl/openssl/blob/e2e09d9fba1187f8d6aafaa34d4172f56f1ffb72/LICENSE>`__
- `CryptoPkg/Library/MbedTlsLib/mbedtls <https://github.com/Mbed-TLS/mbedtls/blob/8c89224991adff88d53cd380f42a2baa36f91454/LICENSE>`__
@@ -275,12 +274,6 @@ dependency on being able to reach servers we do not actually want any code from, as well as needlessly downloading code we will not
use.
-**Submodule Notes**
-
-ArmSoftFloatLib is required by OpensslLib. It's inevitable in openssl-1.1.1
-(since stable201905) for floating point parameter conversion, but should be
-dropped once there's no such need in future release of openssl.
-
.. ===================================================================
.. This is a bunch of directives to make the README file more readable
.. ===================================================================
|