From de4c62a1bd69964f6980991ac92f1ac683683868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Mon, 30 Jan 2023 16:54:59 +0100 Subject: [PATCH] stub: lanzatool -> lzbt --- rust/stub/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/stub/src/main.rs b/rust/stub/src/main.rs index c628679..0458444 100644 --- a/rust/stub/src/main.rs +++ b/rust/stub/src/main.rs @@ -49,7 +49,7 @@ fn print_logo() { /// The configuration that is embedded at build time. /// -/// After lanzaboote is built, lanzatool needs to embed configuration +/// After lanzaboote is built, lzbt needs to embed configuration /// into the binary. This struct represents that information. struct EmbeddedConfiguration { /// The filename of the kernel to be booted. This filename is @@ -182,7 +182,7 @@ fn main(handle: Handle, mut system_table: SystemTable) -> Status { let config: EmbeddedConfiguration = EmbeddedConfiguration::new(&mut booted_image_file(system_table.boot_services()).unwrap()) - .expect("Failed to extract configuration from binary. Did you run lanzatool?"); + .expect("Failed to extract configuration from binary. Did you run lzbt?"); let kernel_data; let initrd_data;