From owner-svn-soc-all@FreeBSD.ORG Sat Jun 14 15:13:24 2014 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2741030A for ; Sat, 14 Jun 2014 15:13:24 +0000 (UTC) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1399E2728 for ; Sat, 14 Jun 2014 15:13:24 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5EFDNe0038711 for ; Sat, 14 Jun 2014 15:13:23 GMT (envelope-from seiya@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.8/8.14.8/Submit) id s5EFDNXu038517 for svn-soc-all@FreeBSD.org; Sat, 14 Jun 2014 15:13:23 GMT (envelope-from seiya@FreeBSD.org) Date: Sat, 14 Jun 2014 15:13:23 GMT Message-Id: <201406141513.s5EFDNXu038517@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to seiya@FreeBSD.org using -f From: seiya@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r269558 - soc2014/seiya/bootsplash/sys/dev/fb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2014 15:13:24 -0000 Author: seiya Date: Sat Jun 14 15:13:22 2014 New Revision: 269558 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=269558 Log: tiny fix Modified: soc2014/seiya/bootsplash/sys/dev/fb/bmp.c soc2014/seiya/bootsplash/sys/dev/fb/bsplash.c Modified: soc2014/seiya/bootsplash/sys/dev/fb/bmp.c ============================================================================== --- soc2014/seiya/bootsplash/sys/dev/fb/bmp.c Sat Jun 14 13:27:57 2014 (r269557) +++ soc2014/seiya/bootsplash/sys/dev/fb/bmp.c Sat Jun 14 15:13:22 2014 (r269558) @@ -71,7 +71,7 @@ return(1); /* XXX check word ordering for big-endian ports? */ } - /* do we understand this bitmap format? */ + /* do we understand this bitmap format? (it only supports W*ndows 3.x format) */ if (bmf->bmfi.bmiHeader.biSize > sizeof(bmf->bmfi.bmiHeader)) { printf("splash: unsupported BMP format (size=%d)\n", bmf->bmfi.bmiHeader.biSize); Modified: soc2014/seiya/bootsplash/sys/dev/fb/bsplash.c ============================================================================== --- soc2014/seiya/bootsplash/sys/dev/fb/bsplash.c Sat Jun 14 13:27:57 2014 (r269557) +++ soc2014/seiya/bootsplash/sys/dev/fb/bsplash.c Sat Jun 14 15:13:22 2014 (r269558) @@ -69,7 +69,7 @@ image = preload_search_by_type("bsplash_image"); if (image == NULL){ - printf("bsplash: failed to load BMP\n"); + printf("bsplash: failed to load BMP data\n"); return 1; }