Skip to content

Commit

Permalink
update references digitalbitbox->BitBoxSwiss
Browse files Browse the repository at this point in the history
  • Loading branch information
benma committed Aug 20, 2024
1 parent c8f800e commit c573b07
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ Plug in both the J-Link hardware and the BitBox02 device into USB ports on your
Build the firmware:

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<img src="./doc/BB02_logo_github.svg" width="345px"/>

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

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

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion external/atca_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

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

/* Cryptoauthlib Configuration File */
#ifndef ATCA_CONFIG_H
Expand Down
4 changes: 2 additions & 2 deletions py/bitbox02/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ def find_version() -> str:
description="Python library for bitbox02 communication",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/digitalbitbox/bitbox02-firmware",
url="https://github.com/BitBoxSwiss/bitbox02-firmware",
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
keywords="digitalbitbox bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f",
keywords="digitalbitbox BitBoxSwiss bitbox bitbox02 bitcoin litecoin ethereum erc20 u2f",
# https://mypy.readthedocs.io/en/stable/installed_packages.html#installed-packages
zip_safe=False,
package_data={
Expand Down
2 changes: 1 addition & 1 deletion releases/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Reproducible builds

The bitbox02 firmware [releases](https://github.com/digitalbitbox/bitbox02-firmware/releases/) are
The bitbox02 firmware [releases](https://github.com/BitBoxSwiss/bitbox02-firmware/releases/) are
tagged: `firmware/vX.Y.Z` for the Multi edition, and `firmware-btc-only/vX.Y.Z` for the Bitcoin-only
edition. The binaries are built from those tags in a reproducible manner, based on fixed versions of
all dependencies. We use Docker to fix those dependencies.
Expand Down
2 changes: 1 addition & 1 deletion releases/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
rm -rf temp

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

cd temp;

Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/framework/eh_personality.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//
// One could get rid of this and also considerably shrink the binary size by compiling core instead
// of using pre-built binaries. See a proof of concept implementation here:
// https://github.com/digitalbitbox/bitbox02-firmware/tree/build-std-PoC. We decided against doing
// https://github.com/BitBoxSwiss/bitbox02-firmware/tree/build-std-PoC. We decided against doing
// this for now as the feature seems immature and because of the warnings against using it in
// production:
// https://github.com/rust-lang/wg-cargo-std-aware/tree/81765f0eb744b9c47840c16f43a32c9f61fd7f0c#mvp-implementation
Expand Down

0 comments on commit c573b07

Please sign in to comment.