Module Name:    src
Committed By:   phx
Date:           Sat May  8 15:26:54 UTC 2010

Modified Files:
        src/sys/arch/sandpoint/stand/netboot: main.c

Log Message:
Print "Kuro Box" when detected. Print "Unknown board" when the hardware was
not identified.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/sandpoint/stand/netboot/main.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/sandpoint/stand/netboot/main.c
diff -u src/sys/arch/sandpoint/stand/netboot/main.c:1.25 src/sys/arch/sandpoint/stand/netboot/main.c:1.26
--- src/sys/arch/sandpoint/stand/netboot/main.c:1.25	Sat May  8 14:40:08 2010
+++ src/sys/arch/sandpoint/stand/netboot/main.c	Sat May  8 15:26:54 2010
@@ -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);

Reply via email to