From 20541226bff550faefaa6979115736ebb9b06353 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Thu, 5 May 2016 17:33:08 -0700 Subject: [PATCH] prod_image_util: do not check update keys on arm64 arm64-usr doesn't have update_engine yet so this isn't valid. --- build_library/prod_image_util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/prod_image_util.sh b/build_library/prod_image_util.sh index 7dc3b9faf1..b32320adcf 100755 --- a/build_library/prod_image_util.sh +++ b/build_library/prod_image_util.sh @@ -81,7 +81,7 @@ create_prod_image() { # Assert that if this is supposed to be an official build that the # official update keys have been used. - if [[ ${COREOS_OFFICIAL:-0} -eq 1 ]]; then + if [[ ${COREOS_OFFICIAL:-0} -eq 1 && "${BOARD}" != arm64-usr ]]; then grep -q official \ "${root_fs_dir}"/var/db/pkg/coreos-base/coreos-au-key-*/USE \ || die_notrace "coreos-au-key is missing the 'official' use flag"