aboutsummaryrefslogtreecommitdiffstats
path: root/tools/configure
diff options
context:
space:
mode:
authorFabio Fantoni <fabio.fantoni@m2r.biz>2013-09-05 12:40:01 +0200
committerIan Campbell <ian.campbell@citrix.com>2013-09-09 14:48:51 +0100
commit906677d6411c3dc579e07967d0137a12392ff314 (patch)
tree677e839e210b259b38c4adc869d395da447e3d54 /tools/configure
parent4d10a505c1eb6feb85292ab944c18e28f5583294 (diff)
downloadxen-906677d6411c3dc579e07967d0137a12392ff314.tar.gz
xen-906677d6411c3dc579e07967d0137a12392ff314.tar.bz2
xen-906677d6411c3dc579e07967d0137a12392ff314.zip
tools: allow user to specify a system seabios binary
If this option is given don't bother building seabios ourselves. Likely to be handy for distros who have an existing seabios package which they want to reuse. Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> Acked-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 4be39fca34..d916cb61ad 100755
--- a/tools/configure
+++ b/tools/configure
@@ -654,6 +654,7 @@ APPEND_LIB
APPEND_INCLUDES
PREPEND_LIB
PREPEND_INCLUDES
+seabios_path
qemu_xen
qemu_traditional
blktap1
@@ -738,6 +739,7 @@ enable_xend
enable_blktap1
enable_qemu_traditional
with_system_qemu
+with_system_seabios
'
ac_precious_vars='build_alias
host_alias
@@ -1409,6 +1411,9 @@ Optional Packages:
Use system supplied qemu PATH or qemu (taken from
$PATH) as qemu-xen device model instead of building
and installing our own version
+ --with-system-seabios[=PATH]
+ Use system supplied seabios PATH instead of building
+ and installing our own version
Some influential environment variables:
CC C compiler command
@@ -3727,6 +3732,19 @@ fi
+# Check whether --with-system-seabios was given.
+if test "${with_system_seabios+set}" = set; then :
+ withval=$with_system_seabios;
+ case $withval in
+ no) seabios_path= ;;
+ *) seabios_path=$withval ;;
+ esac
+
+fi
+
+
+
+