Skip to content

Commit 8b0d8a0

Browse files
committed
Merge remote-tracking branch 'benma/bbswiss'
2 parents e43ff38 + c573b07 commit 8b0d8a0

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

BUILD.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ Plug in both the J-Link hardware and the BitBox02 device into USB ports on your
8282
Build the firmware:
8383

8484
```sh
85-
git clone --recurse-submodules https://github.com/digitalbitbox/bitbox02-firmware && cd bitbox02-firmware
85+
git clone --recurse-submodules https://github.com/BitBoxSwiss/bitbox02-firmware && cd bitbox02-firmware
8686
# or via ssh
87-
git clone --recurse-submodules [email protected]:digitalbitbox/bitbox02-firmware.git && cd bitbox02-firmware
87+
git clone --recurse-submodules [email protected]:BitBoxSwiss/bitbox02-firmware.git && cd bitbox02-firmware
8888
make firmware # requires a GNU ARM toolchain for cross-compiling
8989
```
9090

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<img src="./doc/BB02_logo_github.svg" width="345px"/>
22

3-
![CI](https://github.com/digitalbitbox/bitbox02-firmware/workflows/ci/badge.svg?branch=master)
3+
![CI](https://github.com/BitBoxSwiss/bitbox02-firmware/workflows/ci/badge.svg?branch=master)
44

55
The BitBox02 is a hardware wallet that simplifies secure handling of crypto coins through storing
66
private keys and signing transactions. The content of this repository is the bootloader and firmware
77
used on the device. The BitBox02 is meant to be used primarily with the
8-
[BitBoxApp](https://github.com/digitalbitbox/bitbox-wallet-app), although third party integration is
8+
[BitBoxApp](https://github.com/BitBoxSwiss/bitbox-wallet-app), although third party integration is
99
possible through the BitBox02 API.
1010

1111
The main functionality of the firmware is the following:
@@ -63,7 +63,7 @@ Please also read our [CONTRIBUTING.md](CONTRIBUTING.md) before filing issues and
6363

6464
There are two main ways to install or upgrade firmware on a BitBox02:
6565

66-
1. by running the [BitBoxApp](https://github.com/digitalbitbox/bitbox-wallet-app/)
66+
1. by running the [BitBoxApp](https://github.com/BitBoxSwiss/bitbox-wallet-app/)
6767
2. by running [./py/load_firmware.py](./py/load_firmware.py) after installing the [bitbox02](./py)
6868
Python package, e.g. `./py/load_firmware.py firmware-btc.v9.12.0.signed.bin`.
6969

external/atca_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
// This file is based on the snippet from cryptoauthlib/README.md:
16-
// https://github.com/digitalbitbox/cryptoauthlib/tree/v3.2.5#configuration
16+
// https://github.com/BitBoxSwiss/cryptoauthlib/tree/v3.2.5#configuration
1717

1818
/* Cryptoauthlib Configuration File */
1919
#ifndef ATCA_CONFIG_H

py/bitbox02/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ def find_version() -> str:
4242
description="Python library for bitbox02 communication",
4343
long_description=read("README.md"),
4444
long_description_content_type="text/markdown",
45-
url="https://github.com/digitalbitbox/bitbox02-firmware",
45+
url="https://github.com/BitBoxSwiss/bitbox02-firmware",
4646
python_requires=">=3.6",
4747
classifiers=[
4848
"Intended Audience :: Developers",
4949
"License :: OSI Approved :: Apache Software License",
5050
"Programming Language :: Python :: 3.6",
5151
],
52-
keywords="digitalbitbox bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f",
52+
keywords="digitalbitbox BitBoxSwiss bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f",
5353
# https://mypy.readthedocs.io/en/stable/installed_packages.html#installed-packages
5454
zip_safe=False,
5555
package_data={

releases/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Reproducible builds
22

3-
The bitbox02 firmware [releases](https://github.com/digitalbitbox/bitbox02-firmware/releases/) are
3+
The bitbox02 firmware [releases](https://github.com/BitBoxSwiss/bitbox02-firmware/releases/) are
44
tagged: `firmware/vX.Y.Z` for the Multi edition, and `firmware-btc-only/vX.Y.Z` for the Bitcoin-only
55
edition. The binaries are built from those tags in a reproducible manner, based on fixed versions of
66
all dependencies. We use Docker to fix those dependencies.

releases/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
rm -rf temp
88

99
# Copying repo at the specified version into `./temp`
10-
git clone --depth 1 --branch $1 --recurse-submodules https://github.com/digitalbitbox/bitbox02-firmware temp
10+
git clone --depth 1 --branch $1 --recurse-submodules https://github.com/BitBoxSwiss/bitbox02-firmware temp
1111

1212
cd temp;
1313

test/unit-test/framework/eh_personality.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//
2121
// One could get rid of this and also considerably shrink the binary size by compiling core instead
2222
// of using pre-built binaries. See a proof of concept implementation here:
23-
// https://github.com/digitalbitbox/bitbox02-firmware/tree/build-std-PoC. We decided against doing
23+
// https://github.com/BitBoxSwiss/bitbox02-firmware/tree/build-std-PoC. We decided against doing
2424
// this for now as the feature seems immature and because of the warnings against using it in
2525
// production:
2626
// https://github.com/rust-lang/wg-cargo-std-aware/tree/81765f0eb744b9c47840c16f43a32c9f61fd7f0c#mvp-implementation

0 commit comments

Comments
 (0)