Skip to content

Instantly share code, notes, and snippets.

@thehajime
Last active January 1, 2016 02:09
Show Gist options
  • Save thehajime/8077571 to your computer and use it in GitHub Desktop.
Save thehajime/8077571 to your computer and use it in GitHub Desktop.
#!/bin/sh -ex
git remote add dce git://github.com/direct-code-execution/net-next-sim.git || echo "ignore"
git fetch dce
git merge dce/sim-ns3-3.11.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_TCP_CONG_COUPLED=y
CONFIG_TCP_CONG_OLIA=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