From 58230cbf534f85001dadb7a1edf4fb0e4e5bd014 Mon Sep 17 00:00:00 2001 From: Bryan Lee Date: Wed, 27 Apr 2022 01:13:00 +0800 Subject: [PATCH] chore: replace `git.io` link with the original URL --- .github/workflows/sanity.yml | 2 +- 01_wait_forever/src/main.rs | 2 +- 02_runtime_init/src/main.rs | 2 +- 03_hacky_hello_world/src/main.rs | 2 +- 04_safe_globals/src/main.rs | 2 +- 05_drivers_gpio_uart/src/main.rs | 2 +- 06_uart_chainloader/src/main.rs | 2 +- 07_timestamps/src/main.rs | 2 +- 08_hw_debug_JTAG/src/main.rs | 2 +- 09_privilege_level/src/main.rs | 2 +- 10_virtual_mem_part1_identity_mapping/src/main.rs | 2 +- 11_exceptions_part1_groundwork/src/main.rs | 2 +- 12_integrated_testing/kernel/src/lib.rs | 2 +- 12_integrated_testing/kernel/src/main.rs | 2 +- 13_exceptions_part2_peripheral_IRQs/kernel/src/lib.rs | 2 +- 13_exceptions_part2_peripheral_IRQs/kernel/src/main.rs | 2 +- 14_virtual_mem_part2_mmio_remap/kernel/src/lib.rs | 2 +- 14_virtual_mem_part2_mmio_remap/kernel/src/main.rs | 2 +- 15_virtual_mem_part3_precomputed_tables/kernel/src/lib.rs | 2 +- 15_virtual_mem_part3_precomputed_tables/kernel/src/main.rs | 2 +- 16_virtual_mem_part4_higher_half_kernel/kernel/src/lib.rs | 2 +- 16_virtual_mem_part4_higher_half_kernel/kernel/src/main.rs | 2 +- 17_kernel_symbols/kernel/src/lib.rs | 2 +- 17_kernel_symbols/kernel/src/main.rs | 2 +- X1_JTAG_boot/src/main.rs | 2 +- contributor_setup.sh | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index 4f058992..a42198d7 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -34,7 +34,7 @@ jobs: npm install prettier - name: Setup misspell run: | - curl -L -o ./install-misspell.sh https://git.io/misspell + curl -L -o ./install-misspell.sh https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh sh ./install-misspell.sh -b .vendor - name: Run checks run: | diff --git a/01_wait_forever/src/main.rs b/01_wait_forever/src/main.rs index 4f405bec..30dd45e7 100644 --- a/01_wait_forever/src/main.rs +++ b/01_wait_forever/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/02_runtime_init/src/main.rs b/02_runtime_init/src/main.rs index 398c4a04..6b3b1efd 100644 --- a/02_runtime_init/src/main.rs +++ b/02_runtime_init/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/03_hacky_hello_world/src/main.rs b/03_hacky_hello_world/src/main.rs index da450139..ee9afd2a 100644 --- a/03_hacky_hello_world/src/main.rs +++ b/03_hacky_hello_world/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/04_safe_globals/src/main.rs b/04_safe_globals/src/main.rs index 450ae1ff..422dcf91 100644 --- a/04_safe_globals/src/main.rs +++ b/04_safe_globals/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/05_drivers_gpio_uart/src/main.rs b/05_drivers_gpio_uart/src/main.rs index 70e6b116..241d9498 100644 --- a/05_drivers_gpio_uart/src/main.rs +++ b/05_drivers_gpio_uart/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/06_uart_chainloader/src/main.rs b/06_uart_chainloader/src/main.rs index 32a56bda..79f8b0b3 100644 --- a/06_uart_chainloader/src/main.rs +++ b/06_uart_chainloader/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/07_timestamps/src/main.rs b/07_timestamps/src/main.rs index 3d4ace4f..c067d90c 100644 --- a/07_timestamps/src/main.rs +++ b/07_timestamps/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/08_hw_debug_JTAG/src/main.rs b/08_hw_debug_JTAG/src/main.rs index 3d4ace4f..c067d90c 100644 --- a/08_hw_debug_JTAG/src/main.rs +++ b/08_hw_debug_JTAG/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/09_privilege_level/src/main.rs b/09_privilege_level/src/main.rs index b4449734..45dba34c 100644 --- a/09_privilege_level/src/main.rs +++ b/09_privilege_level/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/10_virtual_mem_part1_identity_mapping/src/main.rs b/10_virtual_mem_part1_identity_mapping/src/main.rs index faa81ee8..148cdfff 100644 --- a/10_virtual_mem_part1_identity_mapping/src/main.rs +++ b/10_virtual_mem_part1_identity_mapping/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/11_exceptions_part1_groundwork/src/main.rs b/11_exceptions_part1_groundwork/src/main.rs index 77ffd9cd..5534750a 100644 --- a/11_exceptions_part1_groundwork/src/main.rs +++ b/11_exceptions_part1_groundwork/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/12_integrated_testing/kernel/src/lib.rs b/12_integrated_testing/kernel/src/lib.rs index 51f10d7c..1218e30e 100644 --- a/12_integrated_testing/kernel/src/lib.rs +++ b/12_integrated_testing/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/12_integrated_testing/kernel/src/main.rs b/12_integrated_testing/kernel/src/main.rs index 2c1bf9ac..dfbc1166 100644 --- a/12_integrated_testing/kernel/src/main.rs +++ b/12_integrated_testing/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/13_exceptions_part2_peripheral_IRQs/kernel/src/lib.rs b/13_exceptions_part2_peripheral_IRQs/kernel/src/lib.rs index 6133f01a..9bd360c0 100644 --- a/13_exceptions_part2_peripheral_IRQs/kernel/src/lib.rs +++ b/13_exceptions_part2_peripheral_IRQs/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/13_exceptions_part2_peripheral_IRQs/kernel/src/main.rs b/13_exceptions_part2_peripheral_IRQs/kernel/src/main.rs index 6729d45c..228b984b 100644 --- a/13_exceptions_part2_peripheral_IRQs/kernel/src/main.rs +++ b/13_exceptions_part2_peripheral_IRQs/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/14_virtual_mem_part2_mmio_remap/kernel/src/lib.rs b/14_virtual_mem_part2_mmio_remap/kernel/src/lib.rs index 9ed0941c..2c874f18 100644 --- a/14_virtual_mem_part2_mmio_remap/kernel/src/lib.rs +++ b/14_virtual_mem_part2_mmio_remap/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/14_virtual_mem_part2_mmio_remap/kernel/src/main.rs b/14_virtual_mem_part2_mmio_remap/kernel/src/main.rs index b891492a..68d34e35 100644 --- a/14_virtual_mem_part2_mmio_remap/kernel/src/main.rs +++ b/14_virtual_mem_part2_mmio_remap/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/15_virtual_mem_part3_precomputed_tables/kernel/src/lib.rs b/15_virtual_mem_part3_precomputed_tables/kernel/src/lib.rs index 9ed0941c..2c874f18 100644 --- a/15_virtual_mem_part3_precomputed_tables/kernel/src/lib.rs +++ b/15_virtual_mem_part3_precomputed_tables/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/15_virtual_mem_part3_precomputed_tables/kernel/src/main.rs b/15_virtual_mem_part3_precomputed_tables/kernel/src/main.rs index 8bc80885..c0c18818 100644 --- a/15_virtual_mem_part3_precomputed_tables/kernel/src/main.rs +++ b/15_virtual_mem_part3_precomputed_tables/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/16_virtual_mem_part4_higher_half_kernel/kernel/src/lib.rs b/16_virtual_mem_part4_higher_half_kernel/kernel/src/lib.rs index 76cd3792..5ecc3a71 100644 --- a/16_virtual_mem_part4_higher_half_kernel/kernel/src/lib.rs +++ b/16_virtual_mem_part4_higher_half_kernel/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/16_virtual_mem_part4_higher_half_kernel/kernel/src/main.rs b/16_virtual_mem_part4_higher_half_kernel/kernel/src/main.rs index 8bc80885..c0c18818 100644 --- a/16_virtual_mem_part4_higher_half_kernel/kernel/src/main.rs +++ b/16_virtual_mem_part4_higher_half_kernel/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/17_kernel_symbols/kernel/src/lib.rs b/17_kernel_symbols/kernel/src/lib.rs index 0178b272..68f7e874 100644 --- a/17_kernel_symbols/kernel/src/lib.rs +++ b/17_kernel_symbols/kernel/src/lib.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` library. //! diff --git a/17_kernel_symbols/kernel/src/main.rs b/17_kernel_symbols/kernel/src/main.rs index 8bc80885..c0c18818 100644 --- a/17_kernel_symbols/kernel/src/main.rs +++ b/17_kernel_symbols/kernel/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. diff --git a/X1_JTAG_boot/src/main.rs b/X1_JTAG_boot/src/main.rs index 6e6cf909..d2f9dbde 100644 --- a/X1_JTAG_boot/src/main.rs +++ b/X1_JTAG_boot/src/main.rs @@ -3,7 +3,7 @@ // Copyright (c) 2018-2022 Andre Richter // Rust embedded logo for `make doc`. -#![doc(html_logo_url = "https://git.io/JeGIp")] +#![doc(html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png")] //! The `kernel` binary. //! diff --git a/contributor_setup.sh b/contributor_setup.sh index 8bad881f..8348b4d7 100755 --- a/contributor_setup.sh +++ b/contributor_setup.sh @@ -31,6 +31,6 @@ then echo "'curl' could not be found. Please install it." exit fi -curl -L -o ./install-misspell.sh https://git.io/misspell +curl -L -o ./install-misspell.sh https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh sh ./install-misspell.sh -b .vendor rm install-misspell.sh