This patch adds debian packages to prepare.sh which developers find useful when hacking on Open vSwitch. ---
What do you guys think about applying this to the buildscripts? I would find the additional packages pretty useful. Particularly the linux-headers. Ethan --- prepare.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/prepare.sh b/prepare.sh index eaaad6e..1d14a11 100755 --- a/prepare.sh +++ b/prepare.sh @@ -23,7 +23,8 @@ echo echo INFO: General System apt-get -y --force-yes install sudo openssh-server autopoint bzip2 sqlite3 \ - vim emacs ntp ntpdate ifupdown tcpdump screen nmon monit rcs curl + vim emacs ntp ntpdate ifupdown tcpdump screen nmon monit rcs curl \ + tcpdump tcpreplay strace netperf iperf err=$?; if [ $err -ne 0 ]; then echo "ERROR[$err] encountered."; return 1; fi echo @@ -37,7 +38,7 @@ echo echo INFO: Build Tools apt-get -y --force-yes install g++ make autoconf libtool swig doxygen \ pkg-config gdb libxml2-dev ccache distcc libgtest-dev \ - google-mock libgtest0 + google-mock libgtest0 valgrind linux-headers-`uname -r` err=$?; if [ $err -ne 0 ]; then echo "ERROR[$err] encountered."; return 1; fi echo @@ -55,7 +56,8 @@ echo INFO: Python apt-get -y --force-yes install python-dev python-twisted python-simplejson \ python-mako python-setuptools python-paramiko python-mysqldb \ python-greenlet python-gevent python-pam python-webob \ - python-yaml python-argparse pep8 python-unittest2 + python-yaml python-argparse pep8 python-unittest2 pychecker \ + python-pytest-xdist err=$?; if [ $err -ne 0 ]; then echo "ERROR[$err] encountered."; return 1; fi echo -- 1.7.10.2 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev