mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-21 16:40:31 +00:00
- all RAN code, CI code, configuration files, dockerfiles, in CSSL v1.0
- all deployment code (openshift, charts, ancillary files like shell
scripts), in MIT
- documentation in CC-BY-4.0
- exceptions might apply and are listed in NOTICE
- there is a new LICENSES folder with all licenses
- CONTRIBUTIONS.md has been updated accordingly
For automated changes based on OAI PL v1.1:
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.{c,h,cpp}
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.ts
perl -i~ -0pe 's/<!--.*Licensed to the OpenAirInterface.*openairinterface.org\n.*-->/<!-- SPDX-License-Identifier: LicenseRef-CSSL-1.0 -->/s' **/*.xml
The rest (cmake, files with missing license, cmake) manually.
19 lines
954 B
Markdown
19 lines
954 B
Markdown
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
|
|
The loader objectives are
|
|
1. provides a common mechanism to prevent an executable to include code that is only used under specific configurations, without rebuilding the code
|
|
1. Provide a common mechanism to allow to choose between different implementations of a given set of functions, without rebuilding the code
|
|
|
|
As a developer you may need to look at these sections:
|
|
|
|
* [loading a shared library](devusage/loading.md)
|
|
* [loader API](devusage/api.md)
|
|
* [loader public structures](devusage/struct.md)
|
|
|
|
Loader usage examples can be found in oai sources:
|
|
|
|
* device and transport initialization code: [function `load_lib` in *radio/COMMON/__common_lib.c__* ](./../../../radio/COMMON/common_lib.c#L91)
|
|
* turbo encoder and decoder initialization: [function `load_codinglib`in *openair1/PHY/CODING/__coding_load.c__*](./../../../develop/openair1/PHY/CODING/coding_load.c#L113)
|
|
|
|
[loader home page](../loader.md)
|