Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932411AbWBXSJ3 (ORCPT ); Fri, 24 Feb 2006 13:09:29 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932414AbWBXSJ3 (ORCPT ); Fri, 24 Feb 2006 13:09:29 -0500 Received: from linux01.gwdg.de ([134.76.13.21]:33664 "EHLO linux01.gwdg.de") by vger.kernel.org with ESMTP id S932411AbWBXSJ2 (ORCPT ); Fri, 24 Feb 2006 13:09:28 -0500 Date: Fri, 24 Feb 2006 19:09:26 +0100 (MET) From: Jan Engelhardt To: Martin Mares cc: Asfand Yar Qazi , linux-kernel@vger.kernel.org Subject: Re: Kernel 'vga=' parameter wierdness In-Reply-To: Message-ID: References: <43FC1624.8090607@qazi.f2s.com> <200602221130.13872.vda@ilport.com.ua> <43FC54B8.7070706@qazi.f2s.com> <43FC574A.4000100@qazi.f2s.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 999 Lines: 28 >> > You're right. I thought '0164' was octal - 0 prefix. >> > >> Quite misleading. This should be fixed. > >What fix do you propose? > That /^0[xX][0-9a-fA-F]+$/ is required to interpret $_ as a hexadecimal number, that /^0[0-7]+$/ is required to interpret it as an octal, and everything else for a normal decimal number. IOW, using strtol(my_vga_string, NULL, 0) everywhere (GRUB, as well as the "vga selector" in the kernel). And making sure the vga selector (i.e. when booting with vga=ask) always prefix numbers with 0x when they are supposed to be in hexadecimal, i.e. e.g. for(i=0; ...) printf("%#x %dx%d\n", i, vga_modes[i].width, vga_modes[i].height); instead of currently printf("%x %dx%d\n", ...) Jan Engelhardt -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/