Skip to content

Commit 4fe0380

Browse files
author
benma's agent
committed
license: add header to files where it was missing
1 parent f9e57a2 commit 4fe0380

File tree

16 files changed

+30
-0
lines changed

16 files changed

+30
-0
lines changed

messages/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
set(PROTO_FILES
24
hww.proto
35
backup.proto

messages/keystore.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
13
// This function can be used to get an identifying xpub at the keypath m/4541509'/1112098098'"
24
// The keypath argument has to be m/4541509'/1112098098'
35

messages/perform_attestation.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0
12

23
syntax = "proto3";
34
package shiftcrypto.bitbox02;

py/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
all:
24
${MAKE} -C bitbox02
35

py/bitbox02/bitbox02/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
"""
24
This file re-exports all symbols from the nested bitbox02 subpackage.
35

py/u2f/bitbox02.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
"""Helpers for doing U2F with bitbox02"""
24

35
from typing import Tuple

releases/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash -e
2+
# SPDX-License-Identifier: Apache-2.0
23

34
# To maintainers: keep this script straight forward to follow and
45
# review.

scripts/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
if(PYTHONINTERP_FOUND)
24
# This template flashes with an offset
35
foreach(target ${FIRMWARES})

scripts/graphics/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
SOURCES=bb02_logo.png bb02_btc_logo.png bb02_multi_logo.png
24

35
%.pbm: %.png

scripts/graphics/convert.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: Apache-2.0
3+
24
"""Helper script to convert images to c source code"""
35
import argparse
46

0 commit comments

Comments
 (0)