From 6d913f123194f64050362af276ffe9bed1118425 Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Fri, 20 Aug 2021 11:37:16 +1000 Subject: [PATCH] Pin pico_explorer to older boot2 We updated the behavior of boot2 so that there is now no default bootloader. Pico_explorer_showcase was the only BSP still using git:main, pin it to the last git commit before https://github.com/rp-rs/rp2040-boot2-rs/pull/7 --- boards/pico_explorer/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/pico_explorer/Cargo.toml b/boards/pico_explorer/Cargo.toml index 432b10b..5d7a94e 100644 --- a/boards/pico_explorer/Cargo.toml +++ b/boards/pico_explorer/Cargo.toml @@ -27,5 +27,5 @@ rt = ["cortex-m-rt","rp2040-hal/rt"] display-interface = "0.4.1" panic-halt = "0.2.0" arrayvec = { version="0.7.1", default-features=false } -rp2040-boot2 = { git="https://github.com/rp-rs/rp2040-boot2-rs", branch="main" } +rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" } nb = "1.0.0"