--enable-qemu-traditional
Enable qemu traditional device model, (DEFAULT is
off)
- --enable-ipxe Enable in-tree IPXE, (DEFAULT is on for x86,
- otherwise off, see also --with-system-ipxe)
+ --enable-ipxe Enable in-tree IPXE, (DEFAULT is off, see also
+ --with-system-ipxe)
--enable-rombios Enable ROMBIOS, (DEFAULT is on if qemu-traditional
or ipxe is enabled, otherwise off)
--enable-systemd Enable systemd support (default is DISABLED)
fi
-if test "x$enable_ipxe" = "xno"; then :
- ipxe=n
-else
- ipxe=y
-fi
# Check whether --enable-ipxe was given.
if test "${enable_ipxe+set}" = set; then :
enableval=$enable_ipxe;
else
- case "$host_cpu" in
- i[3456]86|x86_64)
- enable_ipxe="yes";;
- *) enable_ipxe="no";;
- esac
+ if test "x$enable_qemu_traditional" = "xyes"; then :
+
+ enable_ipxe="yes"
+
+else
+
+ enable_ipxe="no"
fi
+fi
+
+if test "x$enable_ipxe" = "xno"; then :
+ ipxe=n
+else
+ ipxe=y
+fi
# Check whether --with-system-ipxe was given.
if test "${with_system_ipxe+set}" = set; then :
AC_ARG_ENABLE([ipxe],
AS_HELP_STRING([--enable-ipxe],
- [Enable in-tree IPXE, (DEFAULT is on for x86,
- otherwise off, see also --with-system-ipxe)]),,[
- case "$host_cpu" in
- i[[3456]]86|x86_64)
- enable_ipxe="yes";;
- *) enable_ipxe="no";;
- esac
+ [Enable in-tree IPXE,
+ (DEFAULT is off, see also --with-system-ipxe)]),,[
+ AS_IF([test "x$enable_qemu_traditional" = "xyes"], [
+ enable_ipxe="yes"
+ ], [
+ enable_ipxe="no"
+ ])
])
AS_IF([test "x$enable_ipxe" = "xno"], [ipxe=n], [ipxe=y])
AC_ARG_WITH([system-ipxe],