mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
f217c0fb46
Updates the guest_under_test Makefile / upload script to build for aarch64 as well. BUG=b:176748319 TEST=Unfortunately KVM is not fully functional in our arch64 VM, so I have not been able to test the prebuilt yet. Change-Id: I554da6a620b26ffa1db34baa13d529f0b1de1616 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2676994 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com>
11 lines
366 B
Docker
11 lines
366 B
Docker
# Copyright 2020 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
ARG ARCH
|
|
FROM ${ARCH}/alpine:3.12
|
|
|
|
RUN apk add --no-cache pciutils
|
|
|
|
# Note: This docker file is run from the $(target)/rootfs directory specified in
|
|
# the Makefile.
|
|
COPY ./delegate /bin/delegate
|