Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/firecracker
Path: blob/main/tools/update-credits.sh
1955 views
1
#!/usr/bin/env bash
2
3
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
# SPDX-License-Identifier: Apache-2.0
5
6
set -e
7
8
cd "$(dirname "$BASH_SOURCE")/.."
9
10
# see also ".mailmap" for how email addresses and names are deduplicated
11
12
{
13
cat <<-'EOH'
14
15
# Firecracker Credits and Thanks
16
17
(This file is autogenerated using [update-credits.sh](tools/update-credits.sh).)
18
19
Firecracker started with the code from the Chrome OS Virtual Machine Monitor
20
([crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/)), a VMM
21
written in Rust with a focus on safety and security. Thanks go to:
22
23
* [Zach Reizner](https://github.com/zachreizner) <[email protected]>
24
* [Dylan Reid](https://github.com/dgreid) <[email protected]>
25
* [Daniel Verkamp](https://github.com/danielverkamp) <[email protected]>
26
* [Stephen Barber](https://github.com/smibarber) <[email protected]>
27
* [Chirantan Ekbote](https://github.com/jynnantonix) <[email protected]>
28
* [Jason D. Clinton](https://github.com/jclinton) <[email protected]>
29
* Sonny Rao <[email protected]>
30
31
32
Contributors to the Firecracker repository:
33
EOH
34
echo
35
git log --format='* %aN <%aE>' | LC_ALL=C.UTF-8 sort -uf
36
} > CREDITS.md
37
38