Nothing passes this yet, so no functional change. Signed-off-by: Ian Jackson <ian.jack...@eu.citrix.com> --- ts-xen-build | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/ts-xen-build b/ts-xen-build index 4f06419..f5cff8b 100755 --- a/ts-xen-build +++ b/ts-xen-build @@ -25,7 +25,20 @@ use Osstest::BuildSupport; tsreadconfig(); selectbuildhost(\@ARGV); + +our $dokconfig = 1; + +while (@ARGV && $ARGV[0] =~ m/^-/) { + $_ = shift @ARGV; + last if m/^--$/; + if (m/^--no-kconfig$/) { + $dokconfig = 0; + } else { + die "$_ ?"; + } +} # remaining arguments are passed as targets to "make" + builddirsprops(); my $enable_xsm = ($r{enable_xsm}//'false') =~ m/true/ ? 1 : 0; @@ -127,7 +140,7 @@ END END #/; - buildcmd_stamped_logged(600, 'kconfig', '',<<END,''); + buildcmd_stamped_logged(600, 'kconfig', '',<<END,'') if $dokconfig; if test -f xen/Kconfig; then $make_prefix make -C xen olddefconfig fi -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org https://lists.xen.org/xen-devel