Re: [PATCH 4.11 049/150] efi/bgrt: Skip efi_bgrt_init() in case of non-EFI boot

2017-06-14 Thread Maniaxx
On 12.06.2017 at 17:24 wrote Greg Kroah-Hartman: > 4.11-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Dave Young > > commit 7425826f4f7ac60f2538b06a7f0a5d1006405159 upstream. > > Sabrina Dubroca reported an early

Re: [PATCH 4.11 049/150] efi/bgrt: Skip efi_bgrt_init() in case of non-EFI boot

2017-06-14 Thread Maniaxx
On 12.06.2017 at 17:24 wrote Greg Kroah-Hartman: > 4.11-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Dave Young > > commit 7425826f4f7ac60f2538b06a7f0a5d1006405159 upstream. > > Sabrina Dubroca reported an early

Re: [PATCH 4.11 049/150] efi/bgrt: Skip efi_bgrt_init() in case of non-EFI boot

2017-06-14 Thread Maniaxx
On 12.06.2017 at 17:24 wrote Greg Kroah-Hartman: > 4.11-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Dave Young > > commit 7425826f4f7ac60f2538b06a7f0a5d1006405159 upstream. > > Sabrina Dubroca reported an early panic: > > BUG:

Re: [PATCH] x86/efi: fix boot panic because of invalid bgrt image address

2017-06-08 Thread Maniaxx
On 08.06.2017 at 07:38 wrote Dave Young: > Maniaxx, can you verify it on your machine? It passed my test with > an emulation of your wrong address. Works. Bails out properly on 4.12.0-rc4-gb29794ec95c6. [0.00] efi_bgrt: Ignoring BGRT: invalid image address

Re: [PATCH] x86/efi: fix boot panic because of invalid bgrt image address

2017-06-08 Thread Maniaxx
On 08.06.2017 at 07:38 wrote Dave Young: > Maniaxx, can you verify it on your machine? It passed my test with > an emulation of your wrong address. Works. Bails out properly on 4.12.0-rc4-gb29794ec95c6. [0.00] efi_bgrt: Ignoring BGRT: invalid image address

Re: PROBLEM: Kernel panic on EFI BGRT early init code (kernel 4.11/4.12rc2) [regression]

2017-06-01 Thread Maniaxx
On 01.06.2017 at 03:57 wrote Dave Young: > This means the efi_bgrt_init failed out originally before the early init BGRT > patch. Checking the code the only difference is current code we have no > below code: > > status = acpi_get_table("BGRT", 0, > (struct

Re: PROBLEM: Kernel panic on EFI BGRT early init code (kernel 4.11/4.12rc2) [regression]

2017-05-31 Thread Maniaxx
On 27.05.2017 at 07:34 wrote Dave Young: >> Can you double check it works before the commit of below? linux-git-4.10rc5.r115.gc4c39c70c5fe is fine (1 commit back) linux-git-4.10rc5.r116.g7b0a911478c7 is not (early init BGRT patch) >> If machine >> boots fine then check

Re: v4.3.0.4 not working on SSE1 CPUs anymore

2014-08-08 Thread Maniaxx
On 08.08.2014 at 22:25 wrote Robinson Tryon: Maniaxx -- Did this problem start with LO 4.3? (I believe that we switched to Visual Studio 2012 by LO 4.0 or 4.1) Yes, i'm running 4.2.6.2 at the moment. I just ask for it if its really no big deal like setting a compiler flag or something. I

[no subject]

2014-08-07 Thread Maniaxx
___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

v4.3.0.4 not working on SSE1 CPUs anymore

2014-08-07 Thread Maniaxx
(it supports MMX, Extended 3DNow, SSE, PowerNow!). This can usually be fixed by limiting the compiler (GCC) to SSE instruction set. Can you fix that? Regards -Maniaxx Crash report: Problemereignisname:APPCRASH Anwendungsname:soffice.bin Anwendungsversion:4.3.0.4

Re: [pygame] move problems

2009-02-10 Thread maniaxx
hi, K_UP has the value 273 and pygame.key.get_pressed() returns a tuple where the n'th value is 1 if the n'th key was pressed. This should work: if key[K_UP]: . this code is in my main game loop key = pygame.key.get_pressed() #create a key index if K_UP in key: #check if the