Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sandpoint/stand/netboot Print "Kuro Box" when detec...
details: https://anonhg.NetBSD.org/src/rev/4ce5e4917d8f
branches: trunk
changeset: 754691:4ce5e4917d8f
user: phx <phx%NetBSD.org@localhost>
date: Sat May 08 15:26:54 2010 +0000
description:
Print "Kuro Box" when detected. Print "Unknown board" when the hardware was
not identified.
diffstat:
sys/arch/sandpoint/stand/netboot/main.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diffs (22 lines):
diff -r d149858fface -r 4ce5e4917d8f sys/arch/sandpoint/stand/netboot/main.c
--- a/sys/arch/sandpoint/stand/netboot/main.c Sat May 08 14:40:08 2010 +0000
+++ b/sys/arch/sandpoint/stand/netboot/main.c Sat May 08 15:26:54 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.25 2010/05/08 14:40:08 phx Exp $ */
+/* $NetBSD: main.c,v 1.26 2010/05/08 15:26:54 phx Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -87,8 +87,12 @@
printf("Encore PP1"); break;
case BRD_QNAPTS101:
printf("QNAP TS-101"); break;
+ case BRD_KUROBOX:
+ printf("Kuro Box"); break;
case BRD_SYNOLOGY:
printf("Synology DS"); break;
+ default:
+ printf("Unknown board"); break;
}
printf(", cpu %u MHz, bus %u MHz, %dMB SDRAM\n",
cpuclock / 1000000, busclock / 1000000, memsize >> 20);
Home |
Main Index |
Thread Index |
Old Index