You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting this error while compiling bootloader:
error: no bootloader dependency in /home/patriot/Belgeler/projects/hakkero/Cargo.toml
The `--kernel-manifest` path should point to the `Cargo.toml` of the kernel.
--> /home/patriot/Belgeler/projects/hakkero/target/x86_64-unknown-uefi/release/build/bootloader-b9ead764961ec1c9/out/bootloader_config.rs:1:81
|
1 | ... = compile_error ! ("no bootloader dependency in /home/patriot/Belgeler/projects/hakkero/Cargo.toml\n\n The `--kernel-manifest` path should point to the `Cargo.toml` of the kernel.") ...
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
error: could not compile `bootloader`
it says I don't have a bootloader dependency in my Cargo.toml, but I do:
. This should be changed to handle cases like that. Maybe we could use https://github.com/oli-obk/cargo_metadata instead? If we don't want to pull in a dependency, it should also be possible to recursively travel through dependencies.
The text was updated successfully, but these errors were encountered:
I'm getting this error while compiling
bootloader
:it says I don't have a
bootloader
dependency in myCargo.toml
, but I do:This is probably related to the handling in
bootloader/build.rs
Lines 243 to 246 in c09f94f
dependencies
.The text was updated successfully, but these errors were encountered: