#!/usr/bin/env bash # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 set -e cd "$(dirname "$BASH_SOURCE")/.." # see also ".mailmap" for how email addresses and names are deduplicated { cat <<-'EOH' # Firecracker Credits and Thanks (This file is autogenerated using [update-credits.sh](tools/update-credits.sh).) Firecracker started with the code from the Chrome OS Virtual Machine Monitor ([crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/)), a VMM written in Rust with a focus on safety and security. Thanks go to: * [Zach Reizner](https://github.com/zachreizner) * [Dylan Reid](https://github.com/dgreid) * [Daniel Verkamp](https://github.com/danielverkamp) * [Stephen Barber](https://github.com/smibarber) * [Chirantan Ekbote](https://github.com/jynnantonix) * [Jason D. Clinton](https://github.com/jclinton) * Sonny Rao Contributors to the Firecracker repository: EOH echo git log --format='* %aN <%aE>' | LC_ALL=C.UTF-8 sort -uf } > CREDITS.md