From 69d9890c4abdd0e90d878a926c798fbad5a9bfcf Mon Sep 17 00:00:00 2001 From: Andre Richter Date: Sun, 17 Jun 2018 13:40:30 +0200 Subject: [PATCH] Update #[lang = "panic_fmt"] -> #[panic_implementation] More info: https://users.rust-lang.org/t/psa-breaking-change-panic-fmt-language-item-removed-in-favor-of-panic-implementation/17875 --- 01_bareminimum/Cargo.lock | 6 +++--- 01_bareminimum/Cargo.toml | 2 +- 02_multicore_rust/Cargo.lock | 6 +++--- 02_multicore_rust/raspi3_glue/Cargo.toml | 4 ++-- 03_uart1/Cargo.lock | 6 +++--- 03_uart1/raspi3_glue/Cargo.toml | 4 ++-- 04_mailboxes/Cargo.lock | 6 +++--- 04_mailboxes/raspi3_glue/Cargo.toml | 4 ++-- 05_uart0/Cargo.lock | 6 +++--- 05_uart0/kernel8.img | Bin 2016 -> 2016 bytes 05_uart0/raspi3_glue/Cargo.toml | 2 +- 06_raspbootin64/Cargo.lock | 6 +++--- 06_raspbootin64/kernel8.img | Bin 1448 -> 1464 bytes 06_raspbootin64/raspi3_glue/Cargo.toml | 2 +- 07_abstraction/Cargo.lock | 6 +++--- 07_abstraction/kernel8.img | Bin 2016 -> 2016 bytes 07_abstraction/raspi3_glue/Cargo.toml | 2 +- 08_random/Cargo.lock | 6 +++--- 08_random/kernel8.img | Bin 1888 -> 1888 bytes 08_random/raspi3_glue/Cargo.toml | 2 +- 09_delays/Cargo.lock | 6 +++--- 09_delays/kernel8.img | Bin 1848 -> 1848 bytes 09_delays/raspi3_glue/Cargo.toml | 2 +- 0A_power/Cargo.lock | 6 +++--- 0A_power/kernel8.img | Bin 1808 -> 1808 bytes 0A_power/raspi3_glue/Cargo.toml | 2 +- utils/make_all.rb | 4 ++-- 27 files changed, 45 insertions(+), 45 deletions(-) diff --git a/01_bareminimum/Cargo.lock b/01_bareminimum/Cargo.lock index d25bd173..c95df9e2 100644 --- a/01_bareminimum/Cargo.lock +++ b/01_bareminimum/Cargo.lock @@ -2,13 +2,13 @@ name = "kernel8" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" diff --git a/01_bareminimum/Cargo.toml b/01_bareminimum/Cargo.toml index 3f01c3e0..baca21f0 100644 --- a/01_bareminimum/Cargo.toml +++ b/01_bareminimum/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" +panic-abort = "0.2.0" diff --git a/02_multicore_rust/Cargo.lock b/02_multicore_rust/Cargo.lock index 9d943650..bb7fb496 100644 --- a/02_multicore_rust/Cargo.lock +++ b/02_multicore_rust/Cargo.lock @@ -7,7 +7,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -19,10 +19,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "raspi3_glue" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" diff --git a/02_multicore_rust/raspi3_glue/Cargo.toml b/02_multicore_rust/raspi3_glue/Cargo.toml index c23386b3..13c2d808 100644 --- a/02_multicore_rust/raspi3_glue/Cargo.toml +++ b/02_multicore_rust/raspi3_glue/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" -r0 = "0.2.2" \ No newline at end of file +panic-abort = "0.2.0" +r0 = "0.2.2" diff --git a/03_uart1/Cargo.lock b/03_uart1/Cargo.lock index 103ee945..e3eb9afc 100644 --- a/03_uart1/Cargo.lock +++ b/03_uart1/Cargo.lock @@ -8,7 +8,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -20,7 +20,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "raspi3_glue" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -38,7 +38,7 @@ dependencies = [ ] [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/03_uart1/raspi3_glue/Cargo.toml b/03_uart1/raspi3_glue/Cargo.toml index c23386b3..13c2d808 100644 --- a/03_uart1/raspi3_glue/Cargo.toml +++ b/03_uart1/raspi3_glue/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" -r0 = "0.2.2" \ No newline at end of file +panic-abort = "0.2.0" +r0 = "0.2.2" diff --git a/04_mailboxes/Cargo.lock b/04_mailboxes/Cargo.lock index 103ee945..e3eb9afc 100644 --- a/04_mailboxes/Cargo.lock +++ b/04_mailboxes/Cargo.lock @@ -8,7 +8,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -20,7 +20,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "raspi3_glue" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -38,7 +38,7 @@ dependencies = [ ] [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/04_mailboxes/raspi3_glue/Cargo.toml b/04_mailboxes/raspi3_glue/Cargo.toml index c23386b3..13c2d808 100644 --- a/04_mailboxes/raspi3_glue/Cargo.toml +++ b/04_mailboxes/raspi3_glue/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" -r0 = "0.2.2" \ No newline at end of file +panic-abort = "0.2.0" +r0 = "0.2.2" diff --git a/05_uart0/Cargo.lock b/05_uart0/Cargo.lock index 103ee945..e3eb9afc 100644 --- a/05_uart0/Cargo.lock +++ b/05_uart0/Cargo.lock @@ -8,7 +8,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -20,7 +20,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "raspi3_glue" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -38,7 +38,7 @@ dependencies = [ ] [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/05_uart0/kernel8.img b/05_uart0/kernel8.img index b56a2d5225e33e5b9dab635d803ca2c21d554570..6bb98be8f1d370c59ad5f02be5cf8d396ada1da6 100755 GIT binary patch delta 141 zcmaFB|A2pk47277W`>DhgSl3IuI64T%-j?tDm*=iVIsrCCfTMtdgPvifhHz#6~=0L~9K^#A|> delta 142 zcmaFB|A2pk472LjV6K&)tGQPSGdBf^3QrGW5^4x~z|1i5A+x-e@RQ|5q7RlAt=R0! zT+PUMck)3NdEKl3{!f1>?XdGfGSftj|3J1lgslo>GcqttP`n{G5hVABnZfAPWL{Qz fQ7Hxn5wOf1s0_QT(ca09to|$vK(KiNYXB1f^I|n< diff --git a/05_uart0/raspi3_glue/Cargo.toml b/05_uart0/raspi3_glue/Cargo.toml index 0b7d5f3d..13c2d808 100644 --- a/05_uart0/raspi3_glue/Cargo.toml +++ b/05_uart0/raspi3_glue/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" +panic-abort = "0.2.0" r0 = "0.2.2" diff --git a/06_raspbootin64/Cargo.lock b/06_raspbootin64/Cargo.lock index 9087ca93..c7511762 100644 --- a/06_raspbootin64/Cargo.lock +++ b/06_raspbootin64/Cargo.lock @@ -8,14 +8,14 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "raspi3_glue" version = "0.1.0" dependencies = [ - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -32,6 +32,6 @@ dependencies = [ ] [metadata] -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/06_raspbootin64/kernel8.img b/06_raspbootin64/kernel8.img index 0b595b56867a49f8bb562cef39abe3759a512010..45923d37dd3efa4e104ffb7647e00e611d85690f 100755 GIT binary patch delta 144 zcmZ3%y@Pv#Mck)<|EGWX|6iQp2Rj1@YzJa_1?HF7hf delta 142 zcmdnNy@Gp!Mbw9X|EGWX|6iQp2Rj1@Yz1O@1?HF7r%Hj{QO+awNjY5DM&y$Yy#mFQ+(mTJby6Ie9>WwtS{ diff --git a/06_raspbootin64/raspi3_glue/Cargo.toml b/06_raspbootin64/raspi3_glue/Cargo.toml index 88a4b5ee..62958c0a 100644 --- a/06_raspbootin64/raspi3_glue/Cargo.toml +++ b/06_raspbootin64/raspi3_glue/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" authors = ["Andre Richter "] [dependencies] -panic-abort = "0.1.1" +panic-abort = "0.2.0" diff --git a/07_abstraction/Cargo.lock b/07_abstraction/Cargo.lock index e2511d1a..595dbca6 100644 --- a/07_abstraction/Cargo.lock +++ b/07_abstraction/Cargo.lock @@ -22,7 +22,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -35,7 +35,7 @@ name = "raspi3_glue" version = "0.1.0" dependencies = [ "cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -55,7 +55,7 @@ dependencies = [ [metadata] "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" "checksum cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a123fa5a346531ed0fc9fcb8f69ca34d9b8c55b15162731945d14c4d461c5bfe" -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/07_abstraction/kernel8.img b/07_abstraction/kernel8.img index 6ede73aff9939cd428f9b6a8843a868175074f5c..35c2f5367ba745f082306d11fe5b362665d77c97 100755 GIT binary patch delta 127 zcmaFB|A2pk2(#u3W`>DhgSl3IuI64T%-j?tDm*=iVIsrCCf?XdGfGSftj|3J1lgsnRHBa1NOsmZLY@}g1<3?hsS3="] [dependencies] cortex-a = "0.1.3" -panic-abort = "0.1.1" +panic-abort = "0.2.0" r0 = "0.2.2" diff --git a/08_random/Cargo.lock b/08_random/Cargo.lock index e2511d1a..595dbca6 100644 --- a/08_random/Cargo.lock +++ b/08_random/Cargo.lock @@ -22,7 +22,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -35,7 +35,7 @@ name = "raspi3_glue" version = "0.1.0" dependencies = [ "cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -55,7 +55,7 @@ dependencies = [ [metadata] "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" "checksum cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a123fa5a346531ed0fc9fcb8f69ca34d9b8c55b15162731945d14c4d461c5bfe" -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/08_random/kernel8.img b/08_random/kernel8.img index 28ad5ba91c96f080607e50b49949083508390b63..f49f64d8c8cfb48b56401f085abf9107d1326f23 100755 GIT binary patch delta 127 zcmV-_0D%AC4&V-u905nM9rpq)=mP+e^-~L}^Lq@b6$64&6BCzG0FeNZf(?LD;R7Ek z_gf07738OK6X2(Ekh47l8vz0HlUW2$0pF9U1UCWEli>st5hDNpm*8Upk>UdYGT{Rh hs>qWC1s@0k000yK0001!C"] [dependencies] cortex-a = "0.1.3" -panic-abort = "0.1.1" +panic-abort = "0.2.0" r0 = "0.2.2" diff --git a/09_delays/Cargo.lock b/09_delays/Cargo.lock index e2511d1a..595dbca6 100644 --- a/09_delays/Cargo.lock +++ b/09_delays/Cargo.lock @@ -22,7 +22,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -35,7 +35,7 @@ name = "raspi3_glue" version = "0.1.0" dependencies = [ "cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -55,7 +55,7 @@ dependencies = [ [metadata] "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" "checksum cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a123fa5a346531ed0fc9fcb8f69ca34d9b8c55b15162731945d14c4d461c5bfe" -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/09_delays/kernel8.img b/09_delays/kernel8.img index 1423e8b5fc6dcaa589c224fc39258248c4a94c79..ce8336918440d264825c6c0735b2677333507d93 100755 GIT binary patch delta 173 zcmdnNw}Wqj45RW!*>pzT7t9P3zXo%y{9MhwQkc0ZNJMyg5W_@K@XYbwZ3^X z{1kq&yh!B1@}diy*D?w-GDc25$Rx}dGWjZ#x~SLx|I-;67$zuwkeaB((h&3@nQ5Zy zWI^U+MxDtkndK)>VHRPO2eP6?IbbSfWF{_Rf~aJkEXiWb_-(Q;i#rDs1A_pzDufbd^KUZ_F6lQJ;5)qyr#3a-Z^njUR;zMS6t#958KZTzx zFA{mMyy*Pqjf}#KqEY|7GuWmlLJ}YS%4;rOkTj^z^JwPAxk|Y M2LlvLPGGwM05QWhNdN!< diff --git a/09_delays/raspi3_glue/Cargo.toml b/09_delays/raspi3_glue/Cargo.toml index d0d8d05b..ba763bab 100644 --- a/09_delays/raspi3_glue/Cargo.toml +++ b/09_delays/raspi3_glue/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Andre Richter "] [dependencies] cortex-a = "0.1.3" -panic-abort = "0.1.1" +panic-abort = "0.2.0" r0 = "0.2.2" diff --git a/0A_power/Cargo.lock b/0A_power/Cargo.lock index e2511d1a..595dbca6 100644 --- a/0A_power/Cargo.lock +++ b/0A_power/Cargo.lock @@ -22,7 +22,7 @@ dependencies = [ [[package]] name = "panic-abort" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -35,7 +35,7 @@ name = "raspi3_glue" version = "0.1.0" dependencies = [ "cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -55,7 +55,7 @@ dependencies = [ [metadata] "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" "checksum cortex-a 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a123fa5a346531ed0fc9fcb8f69ca34d9b8c55b15162731945d14c4d461c5bfe" -"checksum panic-abort 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75553c30311427a2d9f24a646fc8cedb00e1da1c6bd1608d71d634184c60392e" +"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45c297f0afb6928cd08ab1ff9d95e99392595ea25ae1b5ecf822ff8764e57a0d" "checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286" diff --git a/0A_power/kernel8.img b/0A_power/kernel8.img index 3295c99dc7d8a220d29301da1c6cf730244f32bf..1aed8a7e3198c67aeed54cefea789c8da7d911ac 100755 GIT binary patch delta 135 zcmV;20C@k94v-G8gaH`ng8-5EUk<4k1A%^$0{~Ru3xGZLBL*q|9{~9Y13ny z0XLIT16L5>3xGZLBL*q|e+MZE13"] [dependencies] cortex-a = "0.1.3" -panic-abort = "0.1.1" +panic-abort = "0.2.0" r0 = "0.2.2" diff --git a/utils/make_all.rb b/utils/make_all.rb index ef1681f2..2dc07a86 100644 --- a/utils/make_all.rb +++ b/utils/make_all.rb @@ -1,6 +1,6 @@ #!/usr/bin/env ruby -crates = Dir["**/Cargo.toml"] +crates = Dir["**/Cargo.toml"].sort! crates.each do |x| next if x.include?('raspi3_glue') @@ -8,7 +8,7 @@ crates.each do |x| x = File.dirname(x) puts "\n\n" + x.to_s + "\n\n" Dir.chdir(x) do - if system('make') != 0 + unless system('make') puts "\n\nBuild failed!" exit(1) # Exit with error code end