From c2e145199740f4777295e7880d04b19f210a04c3 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 29 Jun 2011 17:13:24 -0700 Subject: [PATCH] Add option to install cbench aka oflops --- util/install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/install.sh b/util/install.sh index d2e14b0..9e84e47 100755 --- a/util/install.sh +++ b/util/install.sh @@ -345,6 +345,7 @@ function usage { printf 'options:\n' >&2 printf -- ' -a: (default) install (A)ll packages - good luck!\n' >&2 + printf -- ' -b: install controller (B)enchmark (oflops)\n' >&2 printf -- ' -c: (C)lean up after kernel install\n' >&2 printf -- ' -d: (D)elete some sensitive files from a VM image\n' >&2 printf -- ' -f: install open(F)low\n' >&2 @@ -364,10 +365,11 @@ if [ $# -eq 0 ] then all else - while getopts 'acdfhkmntvx' OPTION + while getopts 'abcdfhkmntvx' OPTION do case $OPTION in - a) all;; + a) all;; + b) cbench;; c) kernel_clean;; d) vm_clean;; f) of;;