mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
* Move and copy files to new filenames * Adjust bash scripts to support arm64 * change preseed for arm64 to create EFI partition * change packer template files to support arm64 * Correct preseed file name in x86_64 packer template * fixes Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> * try different machine cpu Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> * don't accelerate KVM for different arch (arm64 vm on amd64 host) Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> * fix building arm64 on x86 Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> * Update README.md --------- Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> Co-authored-by: StepBee <stephan@bienek.org>
52 lines
1.9 KiB
Markdown
52 lines
1.9 KiB
Markdown
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
|
|
===========================================================
|
|
|
|
# Introduction
|
|
|
|
This is used to build appliances for use with CloudStack. Currently two
|
|
build profiles are available for building systemvmtemplate (Debian based) and
|
|
CentOS based built-in user VM template.
|
|
|
|
# Setting up Tools and Environment
|
|
|
|
- Install packer (v1.8.x, v1.9.x tested) and latest KVM, qemu on a Linux x86
|
|
machine (Ubuntu 20.04 tested)
|
|
- Install tools for exporting appliances: qemu-img, ovftool, faketime, sharutils
|
|
- Build and install `vhd-util` as described in build.sh or use pre-built
|
|
binaries at:
|
|
|
|
http://packages.shapeblue.com/systemvmtemplate/vhd-util
|
|
http://packages.shapeblue.com/systemvmtemplate/libvhd.so.1.0
|
|
|
|
- For building ARM64 systemvm template on amd64 systems, please also install:
|
|
qemu-utils qemu-system-arm qemu-efi-aarch64
|
|
|
|
# How to build appliances
|
|
|
|
Just run build.sh, it will export archived appliances for KVM, XenServer,
|
|
VMWare and HyperV in `dist` directory:
|
|
|
|
bash build.sh <name> <version> <arch>
|
|
bash build.sh systemvmtemplate 4.19.1.0 x86_64
|
|
bash build.sh systemvmtemplate 4.19.1.0 aarch64
|
|
|
|
For building builtin x86_64 template run:
|
|
|
|
bash build.sh builtin
|