From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JChuc-0002kh-MI for garchives@archives.gentoo.org; Wed, 09 Jan 2008 20:52:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EA16E0788; Wed, 9 Jan 2008 20:50:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E0B6FE077F for ; Wed, 9 Jan 2008 20:50:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 54EE164F91 for ; Wed, 9 Jan 2008 20:50:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at gentoo.org X-Spam-Score: -2.681 X-Spam-Level: X-Spam-Status: No, score=-2.681 required=5.5 tests=[AWL=-0.082, BAYES_00=-2.599] Received: from smtp.gentoo.org ([127.0.0.1]) by localhost (smtp.gentoo.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vCW3nTRZp-lg for ; Wed, 9 Jan 2008 20:49:54 +0000 (UTC) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 837FD64FB0 for ; Wed, 9 Jan 2008 20:49:52 +0000 (UTC) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JChrw-0003kb-T7 for gentoo-user@gentoo.org; Wed, 09 Jan 2008 20:49:48 +0000 Received: from adsl-75-3-178-22.dsl.chcgil.sbcglobal.net ([75.3.178.22]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Jan 2008 20:49:48 +0000 Received: from reader by adsl-75-3-178-22.dsl.chcgil.sbcglobal.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Jan 2008 20:49:48 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-user@lists.gentoo.org From: reader@newsguy.com Subject: [gentoo-user] Re: Kernel setting for frame buffer (2.6.23-r5) Date: Wed, 09 Jan 2008 14:49:41 -0600 Organization: Still searching... Message-ID: <87k5min2qi.fsf@newsguy.com> References: <87odbu982e.fsf@newsguy.com> <200801092043.51305.shrdlu@unlimitedmail.org> <87odbun3i0.fsf@newsguy.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: adsl-75-3-178-22.dsl.chcgil.sbcglobal.net User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:m3GYhit6y6hdRXFD0iP3tpJwP3w= Sender: news X-Archives-Salt: 6f067713-123e-4c48-8df8-bf2187222bd5 X-Archives-Hash: c74dada7d434403e30c0544de86cce7d reader@newsguy.com writes: > do you know of a chart that shows the decimal notation like you > posted? (Its not in `man vga') > > And I don't recall where I got that from... where ever it was, it > probably also has the decimal equivalents. You can ignore this request... I found a nifty hex to decimal converter for vim here: http://vim.wikia.com/wiki/VimTip27 function! Hex2Dec() let lstr = getline(".") let hexstr = matchstr(lstr, '0x[a-fA-F0-9]\+') while hexstr != "" let hexstr = hexstr + 0 exe 's#0x[a-fA-F0-9]\+#'.hexstr."#" let lstr = substitute(lstr, '0x[a-fA-F0-9]\+', hexstr, "") let hexstr = matchstr(lstr, '0x[a-fA-F0-9]\+') endwhile endfunction -- gentoo-user@lists.gentoo.org mailing list