File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -82,9 +82,9 @@ Plug in both the J-Link hardware and the BitBox02 device into USB ports on your
82
82
Build the firmware:
83
83
84
84
``` 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
86
86
# 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
88
88
make firmware # requires a GNU ARM toolchain for cross-compiling
89
89
```
90
90
Original file line number Diff line number Diff line change 1
1
<img src =" ./doc/BB02_logo_github.svg " width =" 345px " />
2
2
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 )
4
4
5
5
The BitBox02 is a hardware wallet that simplifies secure handling of crypto coins through storing
6
6
private keys and signing transactions. The content of this repository is the bootloader and firmware
7
7
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
9
9
possible through the BitBox02 API.
10
10
11
11
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
63
63
64
64
There are two main ways to install or upgrade firmware on a BitBox02:
65
65
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/ )
67
67
2 . by running [ ./py/load_firmware.py] ( ./py/load_firmware.py ) after installing the [ bitbox02] ( ./py )
68
68
Python package, e.g. ` ./py/load_firmware.py firmware-btc.v9.12.0.signed.bin ` .
69
69
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
// 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
17
17
18
18
/* Cryptoauthlib Configuration File */
19
19
#ifndef ATCA_CONFIG_H
Original file line number Diff line number Diff line change @@ -42,14 +42,14 @@ def find_version() -> str:
42
42
description = "Python library for bitbox02 communication" ,
43
43
long_description = read ("README.md" ),
44
44
long_description_content_type = "text/markdown" ,
45
- url = "https://github.com/digitalbitbox /bitbox02-firmware" ,
45
+ url = "https://github.com/BitBoxSwiss /bitbox02-firmware" ,
46
46
python_requires = ">=3.6" ,
47
47
classifiers = [
48
48
"Intended Audience :: Developers" ,
49
49
"License :: OSI Approved :: Apache Software License" ,
50
50
"Programming Language :: Python :: 3.6" ,
51
51
],
52
- keywords = "digitalbitbox bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f" ,
52
+ keywords = "digitalbitbox BitBoxSwiss bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f" ,
53
53
# https://mypy.readthedocs.io/en/stable/installed_packages.html#installed-packages
54
54
zip_safe = False ,
55
55
package_data = {
Original file line number Diff line number Diff line change 1
1
# Reproducible builds
2
2
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
4
4
tagged: ` firmware/vX.Y.Z ` for the Multi edition, and ` firmware-btc-only/vX.Y.Z ` for the Bitcoin-only
5
5
edition. The binaries are built from those tags in a reproducible manner, based on fixed versions of
6
6
all dependencies. We use Docker to fix those dependencies.
Original file line number Diff line number Diff line change 7
7
rm -rf temp
8
8
9
9
# 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
11
11
12
12
cd temp;
13
13
Original file line number Diff line number Diff line change 20
20
//
21
21
// One could get rid of this and also considerably shrink the binary size by compiling core instead
22
22
// 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
24
24
// this for now as the feature seems immature and because of the warnings against using it in
25
25
// production:
26
26
// https://github.com/rust-lang/wg-cargo-std-aware/tree/81765f0eb744b9c47840c16f43a32c9f61fd7f0c#mvp-implementation
You can’t perform that action at this time.
0 commit comments