Rename Project to Open5GS

- Change BuildTool to Meson
 - Many BUGS Fixed
This commit is contained in:
Sukchan Lee 2019-10-27 17:41:14 +09:00
parent cb447af93a
commit 142763c280
919 changed files with 30459 additions and 6284 deletions

View file

@ -1,7 +1,7 @@
ARG dist=ubuntu
ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-nextepc-base
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
@ -14,8 +14,6 @@ RUN apt-get update && \
devscripts \
osc \
dput \
dh-autoreconf \
dh-systemd \
manpages-dev \
fakeroot \
cscope \

View file

@ -1,10 +1,10 @@
#!/bin/sh
if ! grep "pgwtun" /proc/net/dev > /dev/null; then
ip tuntap add name pgwtun mode tun
if ! grep "ogstun" /proc/net/dev > /dev/null; then
ip tuntap add name ogstun mode tun
fi
ip addr del 45.45.0.1/16 dev pgwtun 2> /dev/null
ip addr add 45.45.0.1/16 dev pgwtun
ip addr del cafe::1/64 dev pgwtun 2> /dev/null
ip addr add cafe::1/64 dev pgwtun
ip link set pgwtun up
ip addr del 45.45.0.1/16 dev ogstun 2> /dev/null
ip addr add 45.45.0.1/16 dev ogstun
ip addr del cafe::1/64 dev ogstun 2> /dev/null
ip addr add cafe::1/64 dev ogstun
ip link set ogstun up