Changeset 4230


Ignore:
Timestamp:
03/20/08 07:51:04 (5 years ago)
Author:
werner
Message:

From: andrzej zaborowski <balrogg@…>

That could be an image too big ( > 60MB) but isn't in this case. Qemu
tracked it down to a memory corruption in latest u-boot. Attached
u-boot patch should help (inlined for viewing).

console-ansi.patch:

  • drivers/video/cfb_console.c (process_sequence): memsetl size is in words, not bytes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/u-boot/patches/console-ansi.patch

    r3982 r4230  
    4949+               case 'J': 
    5050+                       /* assume num1 == 2 */ 
    51 +                       memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, 
     51+                       memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE >> 2, 
    5252+                           CONSOLE_BG_COL); 
    5353+                       break; 
Note: See TracChangeset for help on using the changeset viewer.