-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lock version of crate bootloader #22
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Latest version of bootloader depends on the version 0.14.7 of x86_64, so lock the version for now. Signed-off-by: Jiaqi Gao <[email protected]>
Merge as work-around to pass build. |
haowqs
added a commit
to haowqs/td-shim
that referenced
this pull request
Mar 29, 2022
Problem statement: An error will be reported after the uart version is updated: error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:28:36 | 28 | int_en: AtomicPtr::new(base_pointer.add(1)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:29:39 | 29 | fifo_ctrl: AtomicPtr::new(base_pointer.add(2)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:30:39 | 30 | line_ctrl: AtomicPtr::new(base_pointer.add(3)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:31:40 | 31 | modem_ctrl: AtomicPtr::new(base_pointer.add(4)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:32:38 | 32 | line_sts: AtomicPtr::new(base_pointer.add(5)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: could not compile `uart_16550` due to 5 previous errors Investigation: uart_16550 update - Remove stabilized nightly feature 'const_ptr_offset' ([confidential-containers#22](rust-osdev/uart_16550#22)) Solution: fixed uart_16550 version to 0.2.14 Signed-off-by: haowei <[email protected]>
haowqs
added a commit
to haowqs/td-shim
that referenced
this pull request
Mar 29, 2022
Problem statement: An error will be reported after the uart version is updated: error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:28:36 | 28 | int_en: AtomicPtr::new(base_pointer.add(1)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:29:39 | 29 | fifo_ctrl: AtomicPtr::new(base_pointer.add(2)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:30:39 | 30 | line_ctrl: AtomicPtr::new(base_pointer.add(3)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:31:40 | 31 | modem_ctrl: AtomicPtr::new(base_pointer.add(4)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:32:38 | 32 | line_sts: AtomicPtr::new(base_pointer.add(5)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: could not compile `uart_16550` due to 5 previous errors Investigation + root cause: View recent updates to uart_16550 uart_16550 updated. - Remove stabilized nightly feature 'const_ptr_offset' ([confidential-containers#22](rust-osdev/uart_16550#22)) Solution: fixed uart_16550 version to 0.2.14 Signed-off-by: haowei <[email protected]>
jyao1
pushed a commit
that referenced
this pull request
Mar 30, 2022
Problem statement: An error will be reported after the uart version is updated: error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:28:36 | 28 | int_en: AtomicPtr::new(base_pointer.add(1)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:29:39 | 29 | fifo_ctrl: AtomicPtr::new(base_pointer.add(2)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:30:39 | 30 | line_ctrl: AtomicPtr::new(base_pointer.add(3)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:31:40 | 31 | modem_ctrl: AtomicPtr::new(base_pointer.add(4)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:32:38 | 32 | line_sts: AtomicPtr::new(base_pointer.add(5)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: could not compile `uart_16550` due to 5 previous errors Investigation + root cause: View recent updates to uart_16550 uart_16550 updated. - Remove stabilized nightly feature 'const_ptr_offset' ([#22](rust-osdev/uart_16550#22)) Solution: fixed uart_16550 version to 0.2.14 Signed-off-by: haowei <[email protected]>
haowqs
added a commit
to haowqs/td-shim
that referenced
this pull request
Mar 30, 2022
Problem statement: An error will be reported after the uart version is updated: error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:28:36 | 28 | int_en: AtomicPtr::new(base_pointer.add(1)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:29:39 | 29 | fifo_ctrl: AtomicPtr::new(base_pointer.add(2)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:30:39 | 30 | line_ctrl: AtomicPtr::new(base_pointer.add(3)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:31:40 | 31 | modem_ctrl: AtomicPtr::new(base_pointer.add(4)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:32:38 | 32 | line_sts: AtomicPtr::new(base_pointer.add(5)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: could not compile `uart_16550` due to 5 previous errors Investigation + root cause: View recent updates to uart_16550 uart_16550 updated. - Remove stabilized nightly feature 'const_ptr_offset' ([confidential-containers#22](rust-osdev/uart_16550#22)) Solution: fixed uart_16550 version to 0.2.14 Signed-off-by: haowei <[email protected]>
jyao1
pushed a commit
that referenced
this pull request
Mar 30, 2022
Problem statement: An error will be reported after the uart version is updated: error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:28:36 | 28 | int_en: AtomicPtr::new(base_pointer.add(1)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:29:39 | 29 | fifo_ctrl: AtomicPtr::new(base_pointer.add(2)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:30:39 | 30 | line_ctrl: AtomicPtr::new(base_pointer.add(3)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:31:40 | 31 | modem_ctrl: AtomicPtr::new(base_pointer.add(4)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: `ptr::mut_ptr::<impl *mut T>::add` is not yet stable as a const fn --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uart_16550-0.2.17/src/mmio.rs:32:38 | 32 | line_sts: AtomicPtr::new(base_pointer.add(5)), | ^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_ptr_offset)]` to the crate attributes to enable error: could not compile `uart_16550` due to 5 previous errors Investigation + root cause: View recent updates to uart_16550 uart_16550 updated. - Remove stabilized nightly feature 'const_ptr_offset' ([#22](rust-osdev/uart_16550#22)) Solution: fixed uart_16550 version to 0.2.14 Signed-off-by: haowei <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Latest version of bootloader depends on the version 0.14.7 of x86_64,
so lock the version for now.