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/e4a7cf7a1be2
branches: trunk
changeset: 379842:e4a7cf7a1be2
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 fd63113a80d8 -r e4a7cf7a1be2 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 @@ 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 */
Home |
Main Index |
Thread Index |
Old Index