Merge branch 'master' into HMAC-secret-extension
This commit is contained in:
8
.github/workflows/opensk_build.yml
vendored
8
.github/workflows/opensk_build.yml
vendored
@@ -24,8 +24,16 @@ jobs:
|
|||||||
- name: Set up OpenSK
|
- name: Set up OpenSK
|
||||||
run: ./setup.sh
|
run: ./setup.sh
|
||||||
|
|
||||||
|
- name: Building sha256sum tool
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --manifest-path third_party/tock/tools/sha256sum/Cargo.toml
|
||||||
|
|
||||||
- name: Building OpenSK
|
- name: Building OpenSK
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --release --target=thumbv7em-none-eabi --features with_ctap1
|
args: --release --target=thumbv7em-none-eabi --features with_ctap1
|
||||||
|
- name: Compute SHA-256 sum
|
||||||
|
run: ./third_party/tock/tools/sha256sum/target/debug/sha256sum target/thumbv7em-none-eabi/release/ctap2
|
||||||
|
|||||||
@@ -22,9 +22,9 @@ const LED1_B_PIN: Pin = Pin::P0_24;
|
|||||||
const BUTTON_PIN: Pin = Pin::P0_18;
|
const BUTTON_PIN: Pin = Pin::P0_18;
|
||||||
const BUTTON_RST_PIN: Pin = Pin::P0_02;
|
const BUTTON_RST_PIN: Pin = Pin::P0_02;
|
||||||
|
|
||||||
const UART_RTS: Pin = Pin::P0_21;
|
const UART_RTS: Option<Pin> = Some(Pin::P0_21);
|
||||||
const UART_TXD: Pin = Pin::P0_20;
|
const UART_TXD: Pin = Pin::P0_20;
|
||||||
const UART_CTS: Pin = Pin::P0_03;
|
const UART_CTS: Option<Pin> = Some(Pin::P0_03);
|
||||||
const UART_RXD: Pin = Pin::P0_19;
|
const UART_RXD: Pin = Pin::P0_19;
|
||||||
|
|
||||||
const SPI_MOSI: Pin = Pin::P0_05;
|
const SPI_MOSI: Pin = Pin::P0_05;
|
||||||
@@ -76,7 +76,7 @@ pub unsafe fn reset_handler() {
|
|||||||
let button = components::button::ButtonComponent::new(board_kernel).finalize(
|
let button = components::button::ButtonComponent::new(board_kernel).finalize(
|
||||||
components::button_component_helper!((
|
components::button_component_helper!((
|
||||||
&nrf52840::gpio::PORT[BUTTON_PIN],
|
&nrf52840::gpio::PORT[BUTTON_PIN],
|
||||||
capsules::button::GpioMode::LowWhenPressed,
|
kernel::hil::gpio::ActivationMode::ActiveLow,
|
||||||
kernel::hil::gpio::FloatingState::PullUp
|
kernel::hil::gpio::FloatingState::PullUp
|
||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
@@ -84,15 +84,15 @@ pub unsafe fn reset_handler() {
|
|||||||
let led = components::led::LedsComponent::new().finalize(components::led_component_helper!(
|
let led = components::led::LedsComponent::new().finalize(components::led_component_helper!(
|
||||||
(
|
(
|
||||||
&nrf52840::gpio::PORT[LED1_R_PIN],
|
&nrf52840::gpio::PORT[LED1_R_PIN],
|
||||||
capsules::led::ActivationMode::ActiveLow
|
kernel::hil::gpio::ActivationMode::ActiveLow
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
&nrf52840::gpio::PORT[LED1_G_PIN],
|
&nrf52840::gpio::PORT[LED1_G_PIN],
|
||||||
capsules::led::ActivationMode::ActiveLow
|
kernel::hil::gpio::ActivationMode::ActiveLow
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
&nrf52840::gpio::PORT[LED1_B_PIN],
|
&nrf52840::gpio::PORT[LED1_B_PIN],
|
||||||
capsules::led::ActivationMode::ActiveLow
|
kernel::hil::gpio::ActivationMode::ActiveLow
|
||||||
)
|
)
|
||||||
));
|
));
|
||||||
let chip = static_init!(nrf52840::chip::Chip, nrf52840::chip::new());
|
let chip = static_init!(nrf52840::chip::Chip, nrf52840::chip::new());
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ cd libraries/crypto
|
|||||||
cargo fmt --all -- --check
|
cargo fmt --all -- --check
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
||||||
|
echo "Building sha256sum tool..."
|
||||||
|
cargo build --manifest-path third_party/tock/tools/sha256sum/Cargo.toml
|
||||||
|
|
||||||
echo "Checking that CTAP2 builds properly..."
|
echo "Checking that CTAP2 builds properly..."
|
||||||
cargo check --release --target=thumbv7em-none-eabi
|
cargo check --release --target=thumbv7em-none-eabi
|
||||||
cargo check --release --target=thumbv7em-none-eabi --features with_ctap1
|
cargo check --release --target=thumbv7em-none-eabi --features with_ctap1
|
||||||
@@ -39,11 +42,16 @@ cargo check --release --target=thumbv7em-none-eabi --examples
|
|||||||
|
|
||||||
echo "Checking that CTAP2 builds and links properly (1 set of features)..."
|
echo "Checking that CTAP2 builds and links properly (1 set of features)..."
|
||||||
cargo build --release --target=thumbv7em-none-eabi --features with_ctap1
|
cargo build --release --target=thumbv7em-none-eabi --features with_ctap1
|
||||||
|
./third_party/tock/tools/sha256sum/target/debug/sha256sum target/thumbv7em-none-eabi/release/ctap2
|
||||||
|
|
||||||
echo "Checking that supported boards build properly..."
|
echo "Checking that supported boards build properly..."
|
||||||
make -C third_party/tock/boards/nordic/nrf52840dk
|
make -C third_party/tock/boards/nordic/nrf52840dk
|
||||||
make -C third_party/tock/boards/nordic/nrf52840_dongle
|
make -C third_party/tock/boards/nordic/nrf52840_dongle
|
||||||
|
|
||||||
|
echo "Checking that other boards build properly..."
|
||||||
|
make -C boards/nrf52840_dongle_dfu
|
||||||
|
make -C boards/nrf52840_mdk_dfu
|
||||||
|
|
||||||
if [ -z "${TRAVIS_OS_NAME}" -o "${TRAVIS_OS_NAME}" = "linux" ]
|
if [ -z "${TRAVIS_OS_NAME}" -o "${TRAVIS_OS_NAME}" = "linux" ]
|
||||||
then
|
then
|
||||||
echo "Running unit tests on the desktop (release mode)..."
|
echo "Running unit tests on the desktop (release mode)..."
|
||||||
|
|||||||
2
third_party/tock
vendored
2
third_party/tock
vendored
Submodule third_party/tock updated: 7e47e6f1a9...3139864d39
Reference in New Issue
Block a user