Re: [PATCH] x86/efi: Add EFI framebuffer earlyprintk support

2013-10-14 Thread Ingo Molnar
* H. Peter Anvin h...@zytor.com wrote: On 10/12/2013 10:49 AM, Ingo Molnar wrote: +static void early_efi_write_char(void *dst, char c, int h) +{ +const u8 *src; +u32 fgcolor = 0xaa; That's RGB grey, right? Why not 0xff for a very visible white? The

Re: [PATCH 00/11] EFI runtime services virtual mapping

2013-10-14 Thread Matt Fleming
On Tue, 08 Oct, at 06:45:51PM, Borislav Petkov wrote: @@ -141,34 +151,75 @@ static long efi_runtime_ioctl(struct file *file, unsigned int cmd, return -EFAULT; convert_from_guid(vendor, vendor_guid); - status =

Re: [PATCH 12/12] EFI: Runtime services virtual mapping

2013-10-14 Thread Peter Jones
On Sat, Oct 12, 2013 at 10:14:39AM +0800, Dave Young wrote: CCing Peter Jones .., Peter, any idea about the grub related problem? What grub problem? As Matt was saying, grub2 isn't loading it as EfiBootServicesCode/Data. grub2 is loading it as EfiLoaderData . On 10/11/13 at 09:42am, Dave

[PATCH] efivarfs: 'efivarfs_file_write' function reorganization

2013-10-14 Thread Geyslan G. Bem
This reorganization: Adds 'attrsize' variable to make the code cleaner and more understandable, replacing all 'sizeof(attributes)'. Removes 'bytes' prior assignment due this new approach. Uses 'memdup_user' instead 'kmalloc' + 'copy_from_user'. Signed-off-by: Geyslan G. Bem geys...@gmail.com