Module Name: src
Committed By: nia
Date: Mon Jun 21 19:07:30 UTC 2021
Modified Files:
src/sys/stand/efiboot: boot.c
Log Message:
efiboot: Add ASCII art.
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/stand/efiboot/boot.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/stand/efiboot/boot.c
diff -u src/sys/stand/efiboot/boot.c:1.30 src/sys/stand/efiboot/boot.c:1.31
--- src/sys/stand/efiboot/boot.c:1.30 Mon May 31 11:12:42 2021
+++ src/sys/stand/efiboot/boot.c Mon Jun 21 19:07:30 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: boot.c,v 1.30 2021/05/31 11:12:42 rin Exp $ */
+/* $NetBSD: boot.c,v 1.31 2021/06/21 19:07:30 nia Exp $ */
/*-
* Copyright (c) 2016 Kimihiro Nonaka <[email protected]>
@@ -451,9 +451,13 @@ set_bootargs(const char *arg)
void
print_banner(void)
{
- printf("\n\n"
- ">> %s, Revision %s\n",
- bootprog_name, bootprog_rev);
+ printf(" \\-__,------,___.\n");
+ printf(" \\ __,---` %s\n", bootprog_name);
+ printf(" \\ `---,_. Revision %s\n", bootprog_rev);
+ printf(" \\-,_____,.---`\n");
+ printf(" \\\n");
+ printf(" \\\n");
+ printf(" \\\n\n");
}
void