-
-
Save RichardWithnell/da8c4f8ac6b05199e46b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone http://github.com/richardwithnell/mptcp.git mptcp-dce | |
cd mptcp-dce | |
git checkout subflow_64 | |
#git checkout netlink | |
git remote add dce git://github.com/richardwithnell/net-next-sim.git | |
git fetch dce | |
git merge dce/sim-ns3-3.14.0-branch --no-commit | |
cat >> arch/sim/defconfig <<END | |
CONFIG_MPTCP=y | |
CONFIG_MPTCP_PM_ADVANCED=y | |
CONFIG_MPTCP_FULLMESH=y | |
CONFIG_MPTCP_NDIFFPORTS=y | |
CONFIG_DEFAULT_FULLMESH=y | |
CONFIG_DEFAULT_MPTCP_PM="fullmesh" | |
CONFIG_MPTCP_SCHED_ADVANCED=y | |
CONFIG_MPTCP_ROUNDROBIN=y | |
CONFIG_DEFAULT_MPTCP_SCHED="default" | |
CONFIG_TCP_CONG_LIA=y | |
CONFIG_TCP_CONG_OLIA=y | |
CONFIG_TCP_CONG_WVEGAS=y | |
CONFIG_TCP_CONG_CUBIC=y | |
CONFIG_TCP_CONG_BIC=y | |
CONFIG_NETFILTER=y | |
CONFIG_NF_CONNTRACK=y | |
CONFIG_NF_CONNTRACK_MARK=y | |
CONFIG_NF_CONNTRACK_PROCFS=n | |
CONFIG_NF_CONNTRACK_LABELS=y | |
CONFIG_NF_CT_PROTO_DCCP=y | |
CONFIG_NF_CT_PROTO_SCTP=y | |
CONFIG_NF_CT_NETLINK=y | |
CONFIG_NF_CT_NETLINK_TIMEOUT=y | |
CONFIG_NF_NAT=y | |
CONFIG_NF_NAT_NEEDED=y | |
CONFIG_NF_NAT_PROTO_DCCP=y | |
CONFIG_NF_NAT_PROTO_SCTP=y | |
CONFIG_NF_TABLES=y | |
CONFIG_NF_DEFRAG_IPV4=y | |
CONFIG_NF_CONNTRACK_IPV4=y | |
CONFIG_NF_CONNTRACK_PROC_COMPAT=y | |
CONFIG_NF_TABLES_IPV4=y | |
CONFIG_IP_NF_IPTABLES=y | |
CONFIG_IP_NF_MATCH_AH=y | |
CONFIG_IP_NF_MATCH_ECN=y | |
CONFIG_IP_NF_MATCH_TTL=y | |
CONFIG_IP_NF_FILTER=y | |
CONFIG_IP_NF_TARGET_REJECT=y | |
CONFIG_NF_NAT_IPV4=y | |
CONFIG_IP_NF_TARGET_MASQUERADE=y | |
CONFIG_IP_NF_TARGET_NETMAP=y | |
CONFIG_IP_NF_TARGET_REDIRECT=y | |
END | |
make clean ARCH=sim | |
make defconfig ARCH=sim | |
make library ARCH=sim COV=yes | |
make testbin -C arch/sim/test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment