Module Name: src Committed By: phx Date: Wed Jan 26 13:13:25 UTC 2011
Modified Files: src/sys/arch/sandpoint/stand/altboot: main.c Log Message: bootprog_maker and bootprog_date are missing since we switched to the MI newvers_stand.sh script. Remove the refering information line. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/sandpoint/stand/altboot/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/altboot/main.c diff -u src/sys/arch/sandpoint/stand/altboot/main.c:1.2 src/sys/arch/sandpoint/stand/altboot/main.c:1.3 --- src/sys/arch/sandpoint/stand/altboot/main.c:1.2 Sun Jan 23 07:41:38 2011 +++ src/sys/arch/sandpoint/stand/altboot/main.c Wed Jan 26 13:13:25 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.2 2011/01/23 07:41:38 nisimura Exp $ */ +/* $NetBSD: main.c,v 1.3 2011/01/26 13:13:25 phx Exp $ */ /*- * Copyright (c) 2007 The NetBSD Foundation, Inc. @@ -110,10 +110,9 @@ printf("\n"); printf(">> %s altboot, revision %s\n", bootprog_name, bootprog_rev); - printf(">> (%s, %s)\n", bootprog_maker, bootprog_date); brdprop = brd_lookup(brdtype); - printf("%s, cpu %u MHz, bus %u MHz, %dMB SDRAM\n", brdprop->verbose, + printf(">> %s, cpu %u MHz, bus %u MHz, %dMB SDRAM\n", brdprop->verbose, cpuclock / 1000000, busclock / 1000000, bi_mem.memsize >> 20); n = pcilookup(PCI_CLASS_IDE, lata, sizeof(lata)/sizeof(lata[0]));