From: Michael Brown Date: Sun, 12 Sep 2010 17:40:02 +0000 (+0100) Subject: [multiboot] Reduce length of "Features" startup banner X-Git-Tag: v1.20.1~2542 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97eda5be0df168866f1b10f9e05ae771af702462;p=thirdparty%2Fipxe.git [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 --- 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 );