X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fbuild_deb%2Fkernel_deb_build.sh;fp=ci%2Fbuild_deb%2Fkernel_deb_build.sh;h=0000000000000000000000000000000000000000;hb=843dfef73c86a8ad71afe36e2db9e711dddc199a;hp=824960e7f2000491d01a8c73e565dbd345f876c2;hpb=881aa3fcf152088440444d6f4296eaac3783801c;p=kvmfornfv.git diff --git a/ci/build_deb/kernel_deb_build.sh b/ci/build_deb/kernel_deb_build.sh deleted file mode 100755 index 824960e7f..000000000 --- a/ci/build_deb/kernel_deb_build.sh +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/bash - -SRC=/root -kernel_src_dir=kernel -config_file="arch/x86/configs/opnfv.config" -VERSION="1.0.OPNFV" -output_dir="$1" - -usage () { - echo "usage: ${0} output_dir" - exit 1 -} - -if [[ -z "$@" ]]; then - usage -fi - -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 ${kernel_src_dir} ] ; then - echo "${0}: Directory '${kernel_src_dir}' does not exist, run this script from the root of kvmfornfv source tree" - exit 1 -fi - -quirks() { -# -# Apply out of tree patches -# -for i in $SRC/kvmfornfv/patches/$1/*.patch -do - if [ -f "$i" ] - then - echo "Applying: $i" - patch -p1 <$i - fi -done -} - -quirks kernel - -cd kernel - -if [ ! -f ${config_file} ] ; then - echo "${0}: ${config_file} does not exist" - exit 1 -fi - -# Workaround build bug on Ubuntu 14.04 -cat < arch/x86/boot/install.sh -#!/bin/sh -cp -a -- "\$2" "\$4/vmlinuz-\$1" -EOF - -# Configure the kernel -cp $config_file .config - -make oldconfig