From 843dfef73c86a8ad71afe36e2db9e711dddc199a Mon Sep 17 00:00:00 2001 From: shravani Date: Tue, 20 Dec 2016 15:09:34 +0530 Subject: Combine the common code for kernel building on deb/rpm This patch removes the duplication of code in rpm/debian build scripts. Change-Id: I88edc93df488bd01a43cd98e4f69f35e09f8f61c Signed-off-by: Shravani --- ci/qemuConfigValidate.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 ci/qemuConfigValidate.sh (limited to 'ci/qemuConfigValidate.sh') diff --git a/ci/qemuConfigValidate.sh b/ci/qemuConfigValidate.sh new file mode 100755 index 000000000..f80526b60 --- /dev/null +++ b/ci/qemuConfigValidate.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +qemu_src_dir=qemu +workspace=/root +#scripts_dir=ci/build_deb +VERSION=`grep -m 1 "VERSION" ${qemu_src_dir}/config-host.mak | cut -d= -f2-` + +function show_stage { + echo + echo $1 + echo +} + +function qemu_build_validate { + show_stage "validate" + if [[ -z "$@" ]]; then + echo "usage: ${0} output_dir pkgtype" + exit 1 + fi + output_dir="$1" + pkgtype="$2" + if [ ! -d ${output_dir} -o ! -w ${output_dir} ] ; then + echo "${0}: Output directory '${output_dir}' does not exist or cannot be written" + exit 1 + fi + if [ ! -d ${qemu_src_dir} ] ; then + echo "${0}: Directory '${qemu_src_dir}' does not exist, run this script from the root of kvmfornfv source tree" + exit 1 + fi + echo + echo "Build" + echo +} + -- cgit 1.2.3-korg