From 9de7f848d5a70a60d2df93580899509e1561ff70 Mon Sep 17 00:00:00 2001 From: TheOddGarlic Date: Wed, 26 Jan 2022 18:22:39 +0300 Subject: [PATCH 1/2] Fix typo "belenaEtcher" in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08997e8..e8e8306 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,6 @@ repbuild can be used to run and build docs for able os ## Testing on real hardware I recommend using an old x86_64 computer * `cargo run --release` to generate a binary image that is bootable -* flash it to a USB device via `dd` or belenaEtcher +* flash it to a USB device via `dd` or balenaEtcher * Remove said USB device and plug into test machine * assure test machine boots from USB devices From 61792b982545471e1118fcba1d430628974abf48 Mon Sep 17 00:00:00 2001 From: TheOddGarlic Date: Wed, 26 Jan 2022 18:41:01 +0300 Subject: [PATCH 2/2] fix externc-libm dependency --- ableos/Cargo.lock | 2 +- ableos/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ableos/Cargo.lock b/ableos/Cargo.lock index 9cf3fa3..ff20fbf 100644 --- a/ableos/Cargo.lock +++ b/ableos/Cargo.lock @@ -167,7 +167,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" [[package]] name = "externc-libm" version = "0.1.0" -source = "git+ssh://root@git.ablecorp.us:20/able/externc-libm.git#0781df85c094bcd7e5ef7505e9c5cc6317eeda75" +source = "git+https://git.ablecorp.us/able/externc-libm.git#0781df85c094bcd7e5ef7505e9c5cc6317eeda75" dependencies = [ "libm", ] diff --git a/ableos/Cargo.toml b/ableos/Cargo.toml index ee3afed..94dd0a1 100644 --- a/ableos/Cargo.toml +++ b/ableos/Cargo.toml @@ -83,7 +83,7 @@ features = ["spin_no_std"] version = "1.0" [dependencies.externc-libm] -git = "ssh://root@git.ablecorp.us:20/able/externc-libm.git" +git = "https://git.ablecorp.us:443/able/externc-libm.git" [target.'cfg(target_arch = "x86_64")'.dependencies] bootloader = { version = "0.9.8", features = ["map_physical_memory"] }