2G ems initial

This commit is contained in:
2024-03-13 09:30:40 +08:00
commit eed6460ad2
1234 changed files with 419571 additions and 0 deletions

19
omc/plat/make_plat Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
platDir=/usr/local/omc/plat
platModuleList="8ecp aif bicc debug haepub iptrans isdn isup m2ua mgc mgcp mgc_v2 mtp3 pal public rtp sccp scf sip smpp snmp tcap xapp"
for mod in $platModuleList; do
echo "====================== make $mod =======================";
cd $platDir/$mod
make clean
make
if [ $mod == "iptrans" ] ; then
./generate_iptrans
cp -f ./iptrans /usr/local/omc/bin/
fi
cd -
echo ""
done