init 3gpp

This commit is contained in:
root
2025-08-12 15:49:55 +08:00
parent a2d7a353d8
commit 10ca9395e5
4265 changed files with 26 additions and 0 deletions

0
.clang-format vendored Normal file → Executable file
View File

0
.gitattributes vendored Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
CMakeLists.txt vendored Normal file → Executable file
View File

0
CONTRIBUTING.md vendored Normal file → Executable file
View File

0
LICENSE vendored Normal file → Executable file
View File

0
README.md vendored Normal file → Executable file
View File

0
config/custom-gnb.yaml vendored Normal file → Executable file
View File

0
config/custom-ue.yaml vendored Normal file → Executable file
View File

0
config/free5gc-gnb.yaml vendored Normal file → Executable file
View File

0
config/free5gc-ue.yaml vendored Normal file → Executable file
View File

0
config/open5gs-gnb.yaml vendored Normal file → Executable file
View File

0
config/open5gs-ue.yaml vendored Normal file → Executable file
View File

26
makefile vendored Executable file
View File

@@ -0,0 +1,26 @@
GREEN=\033[0;1;92m
NC=\033[0m
build: FORCE
rm -fr logs # Old version log files
mkdir -p build
rm -fr build/*
# cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" . -B cmake-build-debug
cmake -DCMAKE_BUILD_TYPE=Release -G "CodeBlocks - Unix Makefiles" . -B cmake-build-release
# cmake --build cmake-build-debug --target all
cmake --build cmake-build-release --target all
cp cmake-build-release/nr-gnb build/
cp cmake-build-release/nr-ue build/
cp cmake-build-release/nr-cli build/
cp cmake-build-release/libdevbnd.so build/
cp tools/nr-binder build/
@printf "${GREEN}UERANSIM successfully built.${NC}\n"
FORCE:
clean:
rm -fr build
rm -fr cmake-build-release/

0
src/asn/asn1c/ANY.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/ANY.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/BIT_STRING.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/BIT_STRING.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/BOOLEAN.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/BOOLEAN.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/CMakeLists.txt vendored Normal file → Executable file
View File

0
src/asn/asn1c/INTEGER.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/INTEGER.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/Makefile.am.libasncodec vendored Normal file → Executable file
View File

0
src/asn/asn1c/NULL.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/NULL.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/NativeEnumerated.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/NativeEnumerated.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/NativeInteger.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/NativeInteger.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/OBJECT_IDENTIFIER.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/OBJECT_IDENTIFIER.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/OCTET_STRING.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/OCTET_STRING.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/OPEN_TYPE.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/OPEN_TYPE.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/PrintableString.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/PrintableString.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/UTF8String.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/UTF8String.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/VisibleString.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/VisibleString.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_SEQUENCE_OF.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_SEQUENCE_OF.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_SET_OF.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_SET_OF.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_application.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_application.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_bit_data.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_bit_data.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_codecs.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_codecs_prim.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_codecs_prim.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_internal.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_internal.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_ioc.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_random_fill.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_random_fill.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/asn_system.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_decoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_decoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_tlv_length.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_tlv_length.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_tlv_tag.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/ber_tlv_tag.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_CHOICE.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_CHOICE.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SEQUENCE.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SEQUENCE.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SEQUENCE_OF.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SEQUENCE_OF.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SET_OF.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_SET_OF.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_TYPE.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constr_TYPE.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/constraints.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/constraints.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/der_encoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/der_encoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_decoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_decoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_encoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_encoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_opentype.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_opentype.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_support.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/per_support.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_decoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_decoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_encoder.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_encoder.h vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_support.c vendored Normal file → Executable file
View File

0
src/asn/asn1c/xer_support.h vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationSetupItem.c vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationSetupItem.h vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationSetupList.c vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationSetupList.h vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationToAddItem.c vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationToAddItem.h vendored Normal file → Executable file
View File

0
src/asn/ngap/ASN_NGAP_AMF-TNLAssociationToAddList.c vendored Normal file → Executable file
View File

Some files were not shown because too many files have changed in this diff Show More