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 @@ -60,9 +60,9 @@ Plug in both the J-Link hardware and the BitBox02 device into USB ports on your
6060Build the firmware:
6161
6262``` sh
63- git clone --recurse-submodules https://github.com/digitalbitbox /bitbox02-firmware && cd bitbox02-firmware
63+ git clone --recurse-submodules https://github.com/BitBoxSwiss /bitbox02-firmware && cd bitbox02-firmware
6464# or via ssh
65- git clone --recurse-submodules git@github.com:digitalbitbox /bitbox02-firmware.git && cd bitbox02-firmware
65+ git clone --recurse-submodules git@github.com:BitBoxSwiss /bitbox02-firmware.git && cd bitbox02-firmware
6666make firmware # requires a GNU ARM toolchain for cross-compiling
6767```
6868
Original file line number Diff line number Diff line change 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
55The BitBox02 is a hardware wallet that simplifies secure handling of crypto coins through storing
66private keys and signing transactions. The content of this repository is the bootloader and firmware
77used 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
99possible through the BitBox02 API.
1010
1111The 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
6464There 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/ )
67672 . 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 = {
Original file line number Diff line number Diff line change 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
44tagged: ` firmware/vX.Y.Z ` for the Multi edition, and ` firmware-btc-only/vX.Y.Z ` for the Bitcoin-only
55edition. The binaries are built from those tags in a reproducible manner, based on fixed versions of
66all dependencies. We use Docker to fix those dependencies.
Original file line number Diff line number Diff line change 77rm -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
1212cd temp;
1313
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments