mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 20:19:07 +00:00
See go/crosvm/infra for instructions on how to get access to uploading them. Added a helper script to install dependencies needed to build the guest_under_test. BUG=b:235269312 TEST=Kokoro Change-Id: I78387a33ddbf3ab199b36e76ba617acb1250c7e5 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3783011 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com> Tested-by: Dennis Kempin <denniskempin@google.com>
16 lines
398 B
Bash
Executable file
16 lines
398 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2022 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.
|
|
|
|
# Installs additional dependencies needed to build guest_under_test on debian.
|
|
|
|
set -e
|
|
|
|
sudo apt install \
|
|
gcc-aarch64-linux-gnu \
|
|
qemu-user-static \
|
|
squashfs-tools-ng \
|
|
libelf-dev \
|
|
flex \
|
|
bison
|