Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/stand/boot biosboot: Add ASCII art.



details:   https://anonhg.NetBSD.org/src/rev/fb12cccf85be
branches:  trunk
changeset: 984114:fb12cccf85be
user:      nia <nia%NetBSD.org@localhost>
date:      Mon Jun 21 19:43:17 2021 +0000

description:
biosboot: Add ASCII art.

diffstat:

 sys/arch/i386/stand/boot/boot2.c |  18 +++++++++++-------
 1 files changed, 11 insertions(+), 7 deletions(-)

diffs (32 lines):

diff -r 373b2bd13d5c -r fb12cccf85be sys/arch/i386/stand/boot/boot2.c
--- a/sys/arch/i386/stand/boot/boot2.c  Mon Jun 21 19:07:30 2021 +0000
+++ b/sys/arch/i386/stand/boot/boot2.c  Mon Jun 21 19:43:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: boot2.c,v 1.75 2021/05/30 05:59:22 mlelstv Exp $       */
+/*     $NetBSD: boot2.c,v 1.76 2021/06/21 19:43:17 nia Exp $   */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -311,12 +311,16 @@
                        printf("%s\n", bootcfg_info.banner[n]);
        } else {
 #endif /* !SMALL */
-               printf("\n"
-                      ">> %s, Revision %s (from NetBSD %s)\n"
-                      ">> Memory: %d/%d k\n",
-                      bootprog_name, bootprog_rev, bootprog_kernrev,
-                      getbasemem(), getextmem());
-
+               printf("\n");
+               printf("  \\-__,------,___.\n");
+               printf("   \\        __,---`  %s (from NetBSD %s)\n",
+                   bootprog_name, bootprog_kernrev);
+               printf("    \\       `---,_.  Revision %s\n", bootprog_rev);
+               printf("     \\-,_____,.---`  Memory: %d/%d k\n",
+                   getbasemem(), getextmem());
+               printf("      \\\n");
+               printf("       \\\n");
+               printf("        \\\n");
 #ifndef SMALL
        }
 #endif /* !SMALL */



Home | Main Index | Thread Index | Old Index