* Fix grub_strtoull
@ 2006-09-28 14:12 tgingold
2006-10-05 12:45 ` Johan Rydberg
0 siblings, 1 reply; 4+ messages in thread
From: tgingold @ 2006-09-28 14:12 UTC (permalink / raw)
To: grub-devel
Hi,
this patch is extracted from my previous ia64 patches.
Tristan.
2006-09-28 Tristan Gingold <tristan.gingold@bull.net>
* kern/misc.c (grub_strtoull): guess the base only if not specified.
--- grub2.cvs/kern/misc.c 2006-06-04 17:56:54.000000000 +0200
+++ grub2/kern/misc.c 2006-09-27 08:15:44.000000000 +0200
@@ -366,7 +386,7 @@
/* Guess the base, if not specified. The prefix `0x' means 16, and
the prefix `0' means 8. */
- if (str[0] == '0')
+ if (base == 0 && str[0] == '0')
{
if (str[1] == 'x')
{
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Fix grub_strtoull
2006-09-28 14:12 Fix grub_strtoull tgingold
@ 2006-10-05 12:45 ` Johan Rydberg
0 siblings, 0 replies; 4+ messages in thread
From: Johan Rydberg @ 2006-10-05 12:45 UTC (permalink / raw)
To: The development of GRUB 2
[-- Attachment #1: Type: text/plain, Size: 172 bytes --]
tgingold@free.fr writes:
> 2006-09-28 Tristan Gingold <tristan.gingold@bull.net>
>
> * kern/misc.c (grub_strtoull): guess the base only if not specified.
>
Committed.
[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Fix grub_strtoull
@ 2006-10-06 3:54 Mao, Bibo
2006-10-06 7:26 ` tgingold
0 siblings, 1 reply; 4+ messages in thread
From: Mao, Bibo @ 2006-10-06 3:54 UTC (permalink / raw)
To: The development of GRUB 2
There are still two pending patch about EFI platform, one is big memory map patch, the other is 64-bit compatible patch. Can these two patches be applied also?
Thanks
Bibo,mao
>-----Original Message-----
>From: grub-devel-bounces+bibo.mao=intel.com@gnu.org
>[mailto:grub-devel-bounces+bibo.mao=intel.com@gnu.org] On Behalf Of Johan
>Rydberg
>Sent: 2006年10月5日 20:46
>To: The development of GRUB 2
>Subject: Re: Fix grub_strtoull
>
>tgingold@free.fr writes:
>
>> 2006-09-28 Tristan Gingold <tristan.gingold@bull.net>
>>
>> * kern/misc.c (grub_strtoull): guess the base only if not specified.
>>
>
>Committed.
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Fix grub_strtoull
2006-10-06 3:54 Mao, Bibo
@ 2006-10-06 7:26 ` tgingold
0 siblings, 0 replies; 4+ messages in thread
From: tgingold @ 2006-10-06 7:26 UTC (permalink / raw)
To: The development of GRUB 2
Quoting "Mao, Bibo" <bibo.mao@intel.com>:
> There are still two pending patch about EFI platform, one is big memory map
> patch, the other is 64-bit compatible patch. Can these two patches be applied
> also?
AFAIK the big memory map patch is pending. I will resubmit the 64-bit patch.
Tristan.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-10-06 7:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-28 14:12 Fix grub_strtoull tgingold
2006-10-05 12:45 ` Johan Rydberg
-- strict thread matches above, loose matches on Subject: below --
2006-10-06 3:54 Mao, Bibo
2006-10-06 7:26 ` tgingold
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.