File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -96,12 +96,6 @@ pub enum BootloaderError {
96
96
/// Bootloader dependency has not the right format
97
97
#[ error( "The `bootloader` dependency has not the right format: {0}" ) ]
98
98
BootloaderInvalid ( String ) ,
99
- /// Could not find kernel package in cargo metadata
100
- #[ error( "Could not find package for binary `{bin_name}` in cargo metadata output" ) ]
101
- KernelBinPackageNotFound {
102
- /// The name of the kernel binary
103
- bin_name : String ,
104
- } ,
105
99
/// Could not find some required information in the `cargo metadata` output
106
100
#[ error( "Could not find required key `{key}` in cargo metadata output" ) ]
107
101
CargoMetadataIncomplete {
@@ -127,6 +121,7 @@ pub enum DiskImageError {
127
121
/// The llvm-tools component did not contain the required `llvm-objcopy` executable
128
122
#[ error( "Could not find `llvm-objcopy` in the `llvm-tools-preview` rustup component." ) ]
129
123
LlvmObjcopyNotFound ,
124
+
130
125
/// The `llvm-objcopy` command failed
131
126
#[ error( "Failed to run `llvm-objcopy`: {}" , String :: from_utf8_lossy( . stderr) ) ]
132
127
ObjcopyFailed {
You can’t perform that action at this time.
0 commit comments