diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..f4a0713 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,2 @@ +[target.aarch64-unknown-linux-musl] +rustflags = [ "-C", "target-feature=+crt-static", "-C", "link-arg=-lgcc" ] diff --git a/CODEOWNERS b/CODEOWNERS index 076971e..3eb6b90 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,3 @@ # Add the list of code owners here (using their GitHub username) * gatekeeper-PullAssigner -* danielverkamp +* @danielverkamp diff --git a/src/lib.rs b/src/lib.rs index 8a5d13e..13a058f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ // Copyright 2021 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. +// +// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause #![deny(missing_docs)] diff --git a/src/writer.rs b/src/writer.rs index 02a1428..733ef5e 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,6 +1,6 @@ // Copyright 2021 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. +// +// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause //! This module writes Flattened Devicetree blobs as defined here: //!