From 97eda5be0df168866f1b10f9e05ae771af702462 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 12 Sep 2010 18:40:02 +0100 Subject: [PATCH] [multiboot] Reduce length of "Features" startup banner Minimise the chances of an unwanted line wrap on the iPXE feature list printed at startup. Signed-off-by: Michael Brown --- src/arch/i386/image/multiboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/image/multiboot.c b/src/arch/i386/image/multiboot.c index e2075defe..041f0f2ae 100644 --- a/src/arch/i386/image/multiboot.c +++ b/src/arch/i386/image/multiboot.c @@ -38,7 +38,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include #include -FEATURE ( FEATURE_IMAGE, "Multiboot", DHCP_EB_FEATURE_MULTIBOOT, 1 ); +FEATURE ( FEATURE_IMAGE, "MBOOT", DHCP_EB_FEATURE_MULTIBOOT, 1 ); struct image_type multiboot_image_type __image_type ( PROBE_MULTIBOOT );