Skip to content

Commit 40e2d1b

Browse files
committed
fix(bootloader-interface): autoconfigure should produce auto-* entries to match spec
1 parent 94caf12 commit 40e2d1b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/autoconfigure/bls.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn scan(
7272

7373
// Generate a unique name for the BLS generator and insert the generator into the configuration.
7474
config.generators.insert(
75-
format!("autoconfigure-bls-{}", root_unique_hash),
75+
format!("auto-bls-{}", root_unique_hash),
7676
GeneratorDeclaration {
7777
bls: Some(generator),
7878
..Default::default()

src/autoconfigure/linux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ pub fn scan(
181181

182182
// Generate a unique name for the Linux generator and insert the generator into the configuration.
183183
config.generators.insert(
184-
format!("autoconfigure-linux-{}", root_unique_hash),
184+
format!("auto-linux-{}", root_unique_hash),
185185
GeneratorDeclaration {
186186
list: Some(generator),
187187
..Default::default()

src/autoconfigure/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub fn scan(
4949
let chainload_action_name = format!("{}{}", WINDOWS_CHAINLOAD_ACTION_PREFIX, root_unique_hash,);
5050

5151
// Generate an entry name for Windows.
52-
let entry_name = format!("autoconfigure-windows-{}", root_unique_hash,);
52+
let entry_name = format!("auto-windows-{}", root_unique_hash,);
5353

5454
// Create an entry for Windows and insert it into the configuration.
5555
let entry = EntryDeclaration {

0 commit comments

Comments
 (0)