j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
On Nov 30, 2012, at 9:13 AM, Mark Cave-Ayland wrote:
On 21/11/12 12:57, Programmingkid wrote:
Here is the CIF output I captured after adding FILLL.
Thanks for this - the last RFC patch I just posted was because of this:
of_client_interface: interpret 056136e4 00000001 00000640 fff73ed0 interpret value depthbytes value rowbytes to active-package frame-buffer-adr value this-frame-buffer-adr : rect-setup >r >r rowbytes * swap depthbytes * + this-frame-buffer-adr + r> depthbytes * -rot r> ; : DRAW-RECTANGLE rect-setup 0 ?do 2dup 4 pick move 2 pick rowbytes d+ loop 3drop ; : FILL-RECTANGLE rect-setup rot depthbytes case 1 of dup 8 << or dup 10 << or endof 2 of dup 10 << or endof endcase -rot 0 ?do dup 3 pick 3 pick filll rowbytes + loop 3drop ; : READ-RECTANGLE rect-setup >r swap r> 0 ?do 2dup 4 pick move rowbytes 3 pick d+ loop 3drop ; this-frame-buffer-adr 0 to active-package ([4] -- [2])
^^^^^^^^^^^^^^^^^^^
With this patch applied, do you get any further?
I tried to compile the source code, but I saw this error: cc target/arch/x86/multiboot.o /bin/sh: i486-eabi-gcc: command not found
It looks like a file is being included with the PPC target that shouldn't be included.
On 30/11/12 15:15, Programmingkid wrote:
I tried to compile the source code, but I saw this error: cc target/arch/x86/multiboot.o /bin/sh: i486-eabi-gcc: command not found
It looks like a file is being included with the PPC target that shouldn't be included.
That doesn't look right. Have you ever included x86 as part of your switch-arch invocation? Make sure you do "rm -rf obj-x86" in the openbios-devel base directory to make sure x86 architecture OpenBIOS isn't being built as part of your "make" invocation.
HTH,
Mark.
On Nov 30, 2012, at 10:20 AM, Mark Cave-Ayland wrote:
On 30/11/12 15:15, Programmingkid wrote:
I tried to compile the source code, but I saw this error: cc target/arch/x86/multiboot.o /bin/sh: i486-eabi-gcc: command not found
It looks like a file is being included with the PPC target that shouldn't be included.
That doesn't look right. Have you ever included x86 as part of your switch-arch invocation? Make sure you do "rm -rf obj-x86" in the openbios-devel base directory to make sure x86 architecture OpenBIOS isn't being built as part of your "make" invocation.
HTH,
Mark.
Deleting obj-x86 fixed the problem. Thanks!
I did try the image out, unfortunately I don't go very far. This is the error I saw: 0 > boot cd:9,\:tbxi call-method slw_update_keymap: exception -21. get-key-map needs to be implemented.
On 30/11/12 15:38, Programmingkid wrote:
Deleting obj-x86 fixed the problem. Thanks!
I did try the image out, unfortunately I don't go very far. This is the error I saw: 0> boot cd:9,\:tbxi call-method slw_update_keymap: exception -21. get-key-map needs to be implemented.
Even with the current version of your get-key-map patch applied? If so, please post the revised DEBUG_CIF output.
ATB,
Mark.