Merge pull request #731 from GabyCT/topic/fixkernel

kata-deploy: Fix to test locally changes and rename vmlinuz or vmlinux for virtiofs
This commit is contained in:
Julio Montes 2019-09-20 08:50:09 -05:00 committed by GitHub
commit 9ecb5eb58c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 18 deletions

View File

@ -370,10 +370,16 @@ install_kata() {
install --mode 0644 -D "vmlinux" "${install_path}/${vmlinux}"
install --mode 0644 -D ./.config "${install_path}/config-${kernel_version}"
ln -sf "${vmlinuz}" "${install_path}/vmlinuz.container"
ln -sf "${vmlinux}" "${install_path}/vmlinux.container"
ls -la "${install_path}/vmlinux.container"
ls -la "${install_path}/vmlinuz.container"
if [[ ${experimental_kernel} == "true" ]]; then
sufix="-virtiofs.container"
else
sufix=".container"
fi
ln -sf "${vmlinuz}" "${install_path}/vmlinuz${sufix}"
ln -sf "${vmlinux}" "${install_path}/vmlinux${sufix}"
ls -la "${install_path}/vmlinux${sufix}"
ls -la "${install_path}/vmlinuz${sufix}"
popd >>/dev/null
}
@ -427,7 +433,11 @@ main() {
if [ -z "${kernel_path}" ]; then
config_version=$(get_config_version)
kernel_path="${PWD}/kata-linux-${kernel_version}-${config_version}"
if [[ ${experimental_kernel} == "true" ]]; then
kernel_path="${PWD}/kata-linux-experimental-${kernel_version}-${config_version}"
else
kernel_path="${PWD}/kata-linux-${kernel_version}-${config_version}"
fi
info "Config version: ${config_version}"
fi

View File

@ -1 +1 @@
51
52

View File

@ -20,6 +20,9 @@ readonly GOPATH="${tmp_dir}/go"
push=false
export GOPATH
workdir="${WORKDIR:-$PWD}"
# This flag help us to test and run this script with changes
# that are local
test_local="false"
exit_handler() {
[ -d "${tmp_dir}" ] || sudo rm -rf "${tmp_dir}"
@ -58,6 +61,7 @@ version: The kata version that will be use to create the tarball
options:
-h : Show this help
-l : Run this script to test changes locally
-p : push tarball to ${project_to_attach}
-w <dir>: directory where tarball will be created
@ -89,23 +93,34 @@ install_image() {
#Install kernel asset
install_kernel() {
go get "github.com/${project}/packaging" || true
(
cd ${GOPATH}/src/github.com/${project}/packaging >>/dev/null
if [[ "$test_local" == "true" ]]; then
pushd "${script_dir}/../"
else
go get "github.com/${project}/packaging" || true
pushd ${GOPATH}/src/github.com/${project}/packaging >>/dev/null
git checkout "${kata_version}-kernel-config" ||
git checkout "${kata_version}"
fi
info "build kernel"
./kernel/build-kernel.sh setup
./kernel/build-kernel.sh build
info "install kernel"
DESTDIR="${destdir}" PREFIX="${prefix}" ./kernel/build-kernel.sh install
)
info "build kernel"
./kernel/build-kernel.sh setup
./kernel/build-kernel.sh build
info "install kernel"
DESTDIR="${destdir}" PREFIX="${prefix}" ./kernel/build-kernel.sh install
popd
}
#Install experimental kernel asset
install_experimental_kernel() {
pushd ${GOPATH}/src/github.com/${project}/packaging
if [[ "$test_local" == "true" ]]; then
pushd "${script_dir}/../"
else
go get "github.com/${project}/packaging" || true
pushd ${GOPATH}/src/github.com/${project}/packaging >>/dev/null
git checkout "${kata_version}-kernel-config" ||
git checkout "${kata_version}"
fi
info "build experimental kernel"
./kernel/build-kernel.sh -e setup
./kernel/build-kernel.sh -e build
@ -208,9 +223,10 @@ EOT
}
main() {
while getopts "hpw:" opt; do
while getopts "hlpw:" opt; do
case $opt in
h) usage 0 ;;
l) test_local="true" ;;
p) push="true" ;;
w) workdir="${OPTARG}" ;;
esac
@ -226,8 +242,8 @@ main() {
mkdir -p "${destdir}"
install_image
install_kata_components
install_kernel
install_experimental_kernel
install_kernel
install_qemu
install_qemu_virtiofsd
install_nemu