Skip to content
Snippets Groups Projects
Commit 8408bb6e authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "init-runonce: use UEFI on aarch64"

parents 83ba36c5 750d6ff6
No related branches found
No related tags found
No related merge requests found
......@@ -49,9 +49,15 @@ echo Downloading glance image.
if ! [ -f "${IMAGE}" ]; then
curl -L -o ./${IMAGE} ${IMAGE_URL}/${IMAGE}
fi
EXTRA_PROPERTIES=
if [ ${ARCH} == aarch64 ]; then
EXTRA_PROPERTIES="--property hw_firmware_type=uefi"
fi
echo Creating glance image.
openstack image create --disk-format qcow2 --container-format bare --public \
--property os_type=${IMAGE_TYPE} --file ./${IMAGE} ${IMAGE_NAME}
--property os_type=${IMAGE_TYPE} ${EXTRA_PROPERTIES} --file ./${IMAGE} ${IMAGE_NAME}
echo Configuring neutron.
openstack network create --external --provider-physical-network physnet1 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment