Module Name: src
Committed By: nia
Date: Mon Jun 21 19:43:17 UTC 2021
Modified Files:
src/sys/arch/i386/stand/boot: boot2.c
Log Message:
biosboot: Add ASCII art.
To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/sys/arch/i386/stand/boot/boot2.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/stand/boot/boot2.c
diff -u src/sys/arch/i386/stand/boot/boot2.c:1.75 src/sys/arch/i386/stand/boot/boot2.c:1.76
--- src/sys/arch/i386/stand/boot/boot2.c:1.75 Sun May 30 05:59:22 2021
+++ src/sys/arch/i386/stand/boot/boot2.c Mon Jun 21 19:43:17 2021
@@ -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 @@ print_banner(void)
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 */