From owner-freebsd-doc@FreeBSD.ORG Fri Nov 14 20:06:17 2008 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5E4B106564A for ; Fri, 14 Nov 2008 20:06:17 +0000 (UTC) (envelope-from pali.gabor@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152]) by mx1.freebsd.org (Postfix) with ESMTP id 445DB8FC0C for ; Fri, 14 Nov 2008 20:06:17 +0000 (UTC) (envelope-from pali.gabor@googlemail.com) Received: by fg-out-1718.google.com with SMTP id l26so1141167fgb.35 for ; Fri, 14 Nov 2008 12:06:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:sender; bh=Xm+JwQRUsCLbcrSQ2zRYe/pmlO8FN2GqjWjge8gUZHQ=; b=U+g3EDQCzqIG8mKOMXva1zFFk3b72P4NzVius+uII7bhlNU5ZnQLLYVTt8qtxiZVrp R4HQyOKSF1ywZyWnAWteUVXohQrfTIQPDzeRBDh1Eg4HdLnHOm07rK/6ZoPeGhgakpcW /lFnsLckgJOWVaBCPsN3u6o5K8oEG91CJlQaA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:organization:user-agent:mime-version:to:cc :subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:sender; b=egzlPYcFwCMyF5g41NbSbWGvUgAnD7cW9FGzYjsLuj9I+SK67S0DMmnSSs1+5KZ+lO uK9F9fMMHRqPipNa3k4mhIwl+n0JTbwDIS5J0Yl2nTSJ78oGaIpp/gQUuSkU4jKdvPcH GOmATT1q9tlvj/Kt7DGt4D1P9snpEQKBR+bFA= Received: by 10.181.220.19 with SMTP id x19mr353053bkq.136.1226693175617; Fri, 14 Nov 2008 12:06:15 -0800 (PST) Received: from ?192.168.1.29? (oktnb24.inf.elte.hu [157.181.167.24]) by mx.google.com with ESMTPS id g28sm1196744fkg.8.2008.11.14.12.06.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 14 Nov 2008 12:06:14 -0800 (PST) Message-ID: <491DDA22.7070801@FreeBSD.org> Date: Fri, 14 Nov 2008 21:05:54 +0100 From: Gabor PALI Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.17 (X11/20081023) MIME-Version: 1.0 To: joeb@a1poweruser.com References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: =?UTF-8?B?UMOBTEkgR8OhYm9yIErDoW5vcw==?= Cc: doc@FreeBSD.org Subject: Re: updateing splash screen faq X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2008 20:06:17 -0000 Hi joeb, I started to review your proposed changes, and I have some comments: > "This makes for a visually cleaner experience getting to the Xorg > Desktop Display Manager logon screen and/or virtual console logon > prompt." Sorry, I do not understand this sentence. > The "splash screen" function only supports (*.bmp) or (*.pcx) files > of any resolution supported by VESA. An 320x200 "splash screen" image > will be displayed as a small block in the center of a solid white > background screen. An 640x400 or larger "splash screen" image fills > the whole display screen. The "splash screen" function will > interrogate the "splash screen" file pointed to by the (bitmap_name=) > option and auto load VESA to support the required resolution for you. > > [..] I do not think you should mention every detail. In my opinion, it would be better to put all the text into the Handbook, then reference it from the FAQ (if you want to write all these things down step by step). Or why do not simply reference the corresponding manual pages for example? I think your changes make the answer too long, a FAQ entry should be more compact, a quick way to answer a problem, as it is the original version. To be honest, I am reluctant a bit to include all of your text in the FAQ in the first round. I would prefer a simple fix to remove the /boot/loader.rc part and include some manual page references. Well, here is my recommendation: 11.18. How do I install a splash screen and where do I find them? FreeBSD have a feature to allow the display of "splash" screens during the boot messages. The splash screens currently must be a 256 color bitmap (*.BMP) or ZSoft PCX (*.PCX) file. In addition, they must have a resolution of 320x200 or less to work on standard VGA adapters. If you compile VESA support into your kernel (see vga(4)), then you can use larger bitmaps up to 1024x768. The actual VESA support can either be compiled directly into the kernel with the VESA kernel config option or by loading the VESA kernel module during bootup. To use a splash screen, you need to modify /boot/loader.conf to contain the following: splash_bmp_load="YES" bitmap_load="YES" This assumes you are using /boot/splash.bmp for your splash screen. If you would rather use a PCX file, copy it to /boot/splash.pcx, modify /boot/loader.conf to contain: splash_pcx_load="YES" bitmap_load="YES" bitmap_name="/boot/splash.pcx" Now all you need is a splash screen. For that you can surf on over to the gallery at http://www.baldwin.cx/splash/. For further options, please see the splash(4), loader.conf(5) manual pages. Cheers, :g