You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
|
Dec
(3) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(22) |
Feb
|
Mar
(41) |
Apr
(25) |
May
(37) |
Jun
(29) |
Jul
(24) |
Aug
|
Sep
(4) |
Oct
(2) |
Nov
(4) |
Dec
(1) |
| 2003 |
Jan
(4) |
Feb
(2) |
Mar
(11) |
Apr
(13) |
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(2) |
Sep
(3) |
Oct
(3) |
Nov
|
Dec
(2) |
| 2004 |
Jan
(4) |
Feb
(11) |
Mar
(3) |
Apr
|
May
(10) |
Jun
(9) |
Jul
|
Aug
(3) |
Sep
(2) |
Oct
(10) |
Nov
|
Dec
(1) |
| 2005 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Ahmad B. J. <Ahm...@ou...> - 2018-04-11 10:08:41
|
Thanks a lot to those who already participated in the survey and still time for the people who like to contribute ;) https://link.webropolsurveys.com/S/EDEA9BBBACF9E0FB Thanks for your support! All the Best, Ahmad From: Ahmad Bani Jamali Sent: keskiviikko 28. maaliskuuta 2018 12.15 To: 'ope...@li...' <ope...@li...> Subject: Invitation for an online Survey_Software Architecture of Cloud-based IoT in automotive Importance: High Hello, We empirically investigate "software architectures of Cloud-based IoT in automotive domain". The result will be interesting for the software communities such as QNX. Therefore, your contribution can make the results more reliable. Referrals and sharing the link to others are appreciated! Link to the survey: https://link.webropolsurveys.com/S/EDEA9BBBACF9E0FB Thank you very much for your kind support! Ahmad Banijamali & Pasi Kuvaja University of Oulu, Finland M3S Research Unit http://www.oulu.fi/m3s/ |
|
From: Ahmad B. J. <Ahm...@ou...> - 2018-03-28 09:15:32
|
Hello, We empirically investigate "software architectures of Cloud-based IoT in automotive domain". The result will be interesting for the software communities such as QNX. Therefore, your contribution can make the results more reliable. Referrals and sharing the link to others are appreciated! Link to the survey: https://link.webropolsurveys.com/S/EDEA9BBBACF9E0FB Thank you very much for your kind support! Ahmad Banijamali & Pasi Kuvaja University of Oulu, Finland M3S Research Unit http://www.oulu.fi/m3s/ |
|
From: Jochen S. <joc...@gm...> - 2013-10-17 21:30:13
|
Hi, Is there a port of the latest version of the Boehm GC to QNX 6.5? I've found one for BB10, but it doesn't compile on 6.5 because of missing pthread functions. Cheers, Jochen |
|
From: Digby R.S. T. <dig...@gm...> - 2013-07-04 07:09:33
|
Anyone know what the status of XFree86 for QNX 6 is? There is an xf86-4301-qnx6-bin.tar.gz<http://sourceforge.net/projects/openqnx/files/XFree86%204.3%20for%20QNX6/4.3.0.1/xf86-4301-qnx6-bin.tar.gz/download> archive which was uploaded in May 2003, which seems to work on x86 targets. But my target is armle and I havn't found any corresponding sources, The current XFree86 generic sources only seem to have QNX4 as a pre-defined configuration. Thanks, DigbyT. |
|
From: Bob E. <hyu...@ma...> - 2011-08-24 22:30:25
|
> ***** Confidentiality Statement/Disclaimer ***** seriously? to a public mailing list? |
|
From: l. <lib...@qq...> - 2011-05-13 13:57:30
|
hi,
I wanna save my data in xml format.
I am using QNX Momentics IDE to develop the project.
I can find the header files such as <libxml/parser.h> and link to -lxml2.
My code is simply downloaded from the webside:
/* * section: Tree * synopsis: Creates a tree * purpose: Shows how to create document, nodes and dump it to stdout or file. */ #include <stdio.h> #include <libxml/parser.h> #include <libxml/tree.h> #if defined(LIBXML_TREE_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) /* *To compile this file using gcc you can type *gcc `xml2-config --cflags --libs` -o tree2 tree2.c */ /* A simple example how to create DOM. Libxml2 automagically * allocates the necessary amount of memory to it. */ int main(int argc, char **argv) { xmlDocPtr doc = NULL; /* document pointer */ xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */ xmlDtdPtr dtd = NULL; /* DTD pointer */ char buff[256]; int i, j; LIBXML_TEST_VERSION; ......
xmlMemoryDump(); return(0); } #else int main(void) { fprintf(stderr, "tree support not compiled in\n"); exit(1); } #endif
And complier is ok but when launched only last main executed which is not I need.
It bother me for a week.
1) how can I implement the `xml2-config --cflags --libs`
2} How need I do to reach my purpose?
Thank you very much for your reply!!
------------------
Best regards.
Your sincerely,
Lee Po @ Automation Dept.,SJTUy |
|
From: ws <ws_...@12...> - 2011-01-16 13:09:31
|
Thanks! |
|
From: Princy K. V. <pri...@ne...> - 2009-08-18 06:14:54
|
Hi, Is it possible to load movie on swf application from a callback method which is invoked by a native c application? I could load a movie using loadMovie(xx.swf , this) function outside callback method but not via invoking callback method.Please reply ur suggestions. Thanks, Princy ***** Confidentiality Statement/Disclaimer ***** This message and any attachments is intended for the sole use of the intended recipient. It may contain confidential information. Any unauthorized use, dissemination or modification is strictly prohibited. If you are not the intended recipient, please notify the sender immediately then delete it from all your systems, and do not copy, use or print. Internet communications are not secure and it is the responsibility of the recipient to make sure that it is virus/malicious code exempt. The company/sender cannot be responsible for any unauthorized alterations or modifications made to the contents. If you require any form of confirmation of the contents, please contact the company/sender. The company/sender is not liable for any errors or omissions in the content of this message. ***** Confidentiality Statement/Disclaimer ***** This message and any attachments is intended for the sole use of the intended recipient. It may contain confidential information. Any unauthorized use, dissemination or modification is strictly prohibited. If you are not the intended recipient, please notify the sender immediately then delete it from all your systems, and do not copy, use or print. Internet communications are not secure and it is the responsibility of the recipient to make sure that it is virus/malicious code exempt. The company/sender cannot be responsible for any unauthorized alterations or modifications made to the contents. If you require any form of confirmation of the contents, please contact the company/sender. The company/sender is not liable for any errors or omissions in the content of this message. |
|
From: Princy K. V. <pri...@ne...> - 2009-08-07 07:45:53
|
Hi ,
My SWF Application communicate to the native c application via
Extension DLL. At start up , I want to read the configuration settings
from the flash configuration file. I could read the same by using built
in action script class Info.as.
ie var width = Info.get('display','width');.
But I want to read it directly from extension DLL, not from
actionscript. Is it possible to read configuration settings from
extension DLL? Please help.
Regards,
Princy
***** Confidentiality Statement/Disclaimer *****
This message and any attachments is intended for the sole use of the intended recipient. It may contain confidential information. Any unauthorized use, dissemination or modification is strictly prohibited. If you are not the intended recipient, please notify the sender immediately then delete it from all your systems, and do not copy, use or print. Internet communications are not secure and it is the responsibility of the recipient to make sure that it is virus/malicious code exempt.
The company/sender cannot be responsible for any unauthorized alterations or modifications made to the contents. If you require any form of confirmation of the contents, please contact the company/sender. The company/sender is not liable for any errors or omissions in the content of this message.
***** Confidentiality Statement/Disclaimer *****
This message and any attachments is intended for the sole use of the intended recipient. It may contain confidential information. Any unauthorized use, dissemination or modification is strictly prohibited. If you are not the intended recipient, please notify the sender immediately then delete it from all your systems, and do not copy, use or print. Internet communications are not secure and it is the responsibility of the recipient to make sure that it is virus/malicious code exempt.
The company/sender cannot be responsible for any unauthorized alterations or modifications made to the contents. If you require any form of confirmation of the contents, please contact the company/sender. The company/sender is not liable for any errors or omissions in the content of this message.
|
|
From: liqiang_SIA <li...@si...> - 2009-02-13 14:35:17
|
hi, I am using Qnx4.25 on SCM 7026(a motherboard produced by shengbo in China). The motherboard can provide 6 serial port. Port 1,2 are original and the port 3-6 are extended port. I have found the extended port(3-6) use the shared interrupt number 11 So I write the following sentenses to start the extended port in file--/etc/config/sysinit.1 /bin/Dev.ser -N/dev/ser3 D000,11 & /bin/Dev.ser -N/dev/ser4 D008,11 & /bin/Dev.ser -N/dev/ser5 D010,11 & /bin/Dev.ser -N/dev/ser6 D018,11 & but the system is crashed. when I load one port, such as only one sentence /bin/Dev.ser -N/dev/ser3 D000,11 & the serial port 3 can work well. who can tell me why? thanks... Qiang Li -------------- 2009-02-13 Underwater Robot Research Center ShenYang Insitute of Automation, Chinese Academy of Sciences 114# Nanta Street, ShenYang, P.R.China Postcode:110016 Tel:86-024-23970211 EMail:li...@si... ; liq...@ho... |
|
From: zied f. <fri...@gm...> - 2008-05-23 08:32:24
|
Hello I would running the USB radio with the QNX work space, have you any ideas to do this. thanks. Link of the USB radio : www.silabs.com/usbradio |
|
From: Pusik P. <pa...@ke...> - 2008-02-18 14:11:36
|
Hello.
I got some information of my status by TRACE32 ARM ICD.
The below assembler code is my status.
I guess that there is some problem in callout_reboot_xxxxx.S but I need some
hint.
Actually, I don't want to use WatchDog scheme.
Please give me a hint.
Best regards.
Pusik.
{ Tabs: 4 }
SR:4002:FE029180 QueryObjectDone: mov r12,r13
stmdb r13!,{r11-r12,r14,pc}
sub r11,r12,#0x4
mov r3,#0x0
str r3,[r0,#0x1C0]
ldmdb r11,{r11,r13,pc}
SR:4002:FE029198 reboot: mov
r12,r13
stmdb r13!,{r4,r11-r12,r14,pc}
sub r11,r12,#0x4
mov r4,r0
ldr r2,0xFE0291DC
ldr r3,[r2]
orr r3,r3,#0x40
str r3,[r2]
bl 0xFE03BC44 ; cpu_reboot
ldr r3,0xFE0291E0
ldr r2,[r3]
ldr r3,0xFE0291E4
ldr r0,[r3]
mov r1,r4
mov r14,pc
ldr pc,[r2]
ldmdb r11,{r4,r11,r13,pc}
cdp2 p4,0x0,c2,c6,c12,0x4
cdp2 p5,0x0,c2,c6,c4,0x7
cdp2 p3,0x0,c2,c6,c0,0x4
SR:4002:FE0291E8 RebootSystem: mov r12,r13
stmdb r13!,{r4,r11-r12,r14,pc}
sub r11,r12,#0x4
mov r4,r0
ldr r3,0xFE029220 ; r3 = 0xFE06248C
ldr r3,[r3] ; r3 = data[0xFE06248C]
= 0x000000C0
cmp r3,#0x0
bne 0xFE029214
ldr r0,0xFE029224 ; r0 = 0xFE029198
mov r1,r4
bl 0xFE057210 ; __Ring0
SR:4002:FE029214 mov
r0,r4
bl 0xFE029198 ; reboot
TRACE32 stop hear --> b
0xFE02921C
SR:4002:FE029220 FE06248C cdp2
p4,0x0,c2,c6,c12,0x4
SR:4002:FE029224 FE029198 mcr2
p1,0x0,r9,c2,c8,0x4
SR:4002:FE029228 E91BA810 ldmdb
r11,{r4,r11,r13,pc}
SR:4002:FE02922C kerext_stack_cont: mov
r12,r13
stmdb r13!,{r4-r5,r11-r12,r14,pc}
SR:4002:FE06248C 000000C0
The below code is my callout_reboot_jaguar2.S file.
/*
* -----------------------------------------------------------------------
* Routine to patch callout code
*
* On entry:
* r0 - physical address of syspage
* r1 - virtual address of syspage
* r2 - offset from start of syspage to start of the callout routine
* r3 - offset from start of syspage to read/write data used by
callout
* -----------------------------------------------------------------------
*/
patch_reboot:
stmdb sp!,{r4,lr}
add r4, r0, r2
// address of callout routine
/*
* Map Watchdog Timer registers
*/
mov r0, #0x10
ldr r1, Lpaddr
bl callout_io_map
/*
* Patch the callout routine
*/
CALLOUT_PATCH r4, r0, r1, r2, ip
ldmia sp!,{r4,pc}
Lpaddr: .word J2_WDT_CTRL
CALLOUT_START(reboot_jaguar2, 0, patch_reboot)
/*
* Get the Watchdog Timer base address (patched)
*/
mov ip, #0x000000ff
orr ip, ip, #0x0000ff00
orr ip, ip, #0x00ff0000
orr ip, ip, #0xff000000
// Store the address of J2_WDT_CTRL at ip
ldr r1, [ip, #0]
orr r1, r1, #0x03 /* enable wdt, and enable
reset at terminal count */
str r1, [ip, #0]
CALLOUT_END(reboot_jaguar2)
This is a part of code in startup's main.c code.
const struct callout_slot callouts[] = {
{ CALLOUT_SLOT( reboot, _jaguar2 ) },
};
From: ope...@li...
[mailto:ope...@li...] On Behalf Of Pusik
Park
Sent: Monday, February 18, 2008 10:22 PM
To: ope...@li...
Subject: [Openqnx-developer] QNX Porting problem on ARM926EJ-S-based SoC
platform
Dear Everyone.
I solved callout_debug_xxxxx.S and I looked at another kernel debugging
message like the below log.
What happens?
Unfortunately, I don't know where is the problem ?
Please help me.
Best regards.
Pusik.
Brief description of my CPU and Board.
CPU Core : ARM926EJ-S 32-bit RISC
CPU Cache: 16KB I-Cache, 16KB D-Cache
CPU Clock : 141MHz
CPU interrupt sources : 29 ea
Timers : 32-bit timer 2 ea
NOR Flash : 1MB (base address = 0x0000_0000)
SDRAM : 32MB (base address = 0x1000_0000)
----------------------------------------------------------------------------
---------------------------------
QNX IPL for JAGUAR
Commands:
s: load image serially using sendnto
f: load image from flash
ipl> send image now...
Download complete, calling image_scan...
Found image, calling image_setup...
image_scan return : 10400000
signature : 0x00FF7EEB
version : 0x00000001
flags1 : 0x00000001
flags2 : 0x00000000
header_size : 0x00000100
machine : 0x00000028
startup_vaddr : 0x10801B80
paddr_bias : 0x00000000
image_paddr : 0x10800000
ram_paddr : 0x10800000
ram_size : 0x0018C004
startup_size : 0x00021108
stored_size : 0x0018C004
imagefs_paddr : 0x00000000
imagefs_size : 0x0016AEFC
preboot_size : 0x00000000
zero0 : 0x00000000
image setup complete, calling image_start...
init_raminfo
add_ram start=0x10000000, size=0x02000000
lsp.asinfo.size=0x00000000
1
as_add_containing start=268435456, end=301989887, attr=00000007, name=ram,
conta
iner=memory
2
add_mem(10000000,02000000)
alloc_ram(0x10821108,0x0016aefc,0x00000001) => 0x10821108
add_mem(1098c004,01673ffc)
find_ram(size=0x00008000, align=0x00001000, colour=0x00000000,
mask=0x00000000)
Addr=0x10000000
jaguar2_cpu_freq: F_in=32768000
alloc_ram(0x10800000,0x0018c004,0x00000001) => 0x10800000
alloc_ram(0xffffffff,0x00004000,0x00004000) => find_ram(size=0x00004000,
align=0x00004000, colour=0x00000000, mask=0x00000000)
Addr=0x10008000
add_mem(1000c000,007f4000)
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000c000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000d000
init_intrinfo
add_interrupt_array size=52, incr=52
add_interrupt
init_qtime
init_cpuinfo
Dcache: 512x32 WB
Icache: 512x32
arm926 rev 5 141MHz
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000e000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000f000
init_hwinfo
add_typed_string 0x00000005=jaguar2
init_system_private
add_typed_string 0x00000002=localhost
load_ifs done
as_find memory done
as_add imagefs done
as_add startup done
as_add bootram done
Find boot process 0 (inode 3758096386)
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10010000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10011000
Load boot process '/proc/boot/procnto-instr'
boot_pgm[276963328].base=0x100001f4
boot_pgm[4261570292].entry=0x00000000
memmove done
option: c
reserved_size=0
smp_hook_rtn done
mdriver_hook done
as_add_containing start=268435456, end=268468223, attr=00000007,
name=sysram, container=ram
as_add_containing start=268509184, end=276824063, attr=00000007,
name=sysram, container=ram
as_add_containing start=278446084, end=301989887, attr=00000007,
name=sysram, container=ram
add_system done
alloc_syspage_memory
output_callouts(1) done
callouts_size=0x00000290
spsize=0x00000790
cpu_alloc_syspage_memory cpupagep=0x00000007, syspagep=0x00000000,
spsize=0x00000790
alloc_ram(addr=0xffffffff, size=0x000007b0, align=0x00001000)
alloc_ram(0xffffffff,0x000007b0,0x00001000) => find_ram(size=0x000007b0,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10012000
cpu_alloc_syspage_memory cpupage_paddr=0x10012790, syspage_paddr=0x10012000
INIT_ENTRY(system_private) done
INIT_ENTRY(meminfo) done
INIT_ENTRY(asinfo) done
INIT_ENTRY(hwinfo) done
INIT_ENTRY(cpuinfo) done
INIT_ENTRY(cacheattr) done
INIT_ENTRY(qtime) done
INIT_ENTRY(callout) done
INIT_ENTRY(callin) done
INIT_ENTRY(typed_strings) done
INIT_ENTRY(strings) done
INIT_ENTRY(intrinfo) done
INIT_ENTRY(smp) done
INIT_ENTRY(pminfo) done
INIT_ENTRY(mdriver) done
memset cpu=0x1081fbc8, size=0x00000020
[cpu:0] startup_memory_map done
[cpu:0] memmove done
[cpu:0] startup_memory_unmap done
output_callouts(0) done
alloc_syspage_memory done
jtag_store_syspage_addr done
Header size=0x0000009c, Total Size=0x00000480, #Cpu=1, Type=4
Section:system_private offset:0x000001d8 size:0x00000068
syspage ptr user:fc404000 kernel:fc404000
cpupage ptr user:fc404790 kernel:fc404790 spacing:32
kdebug info:00000000 callback:00000000
boot pgms: idx=0
0) base paddr:10822000 start addr:fe0266f4
ramsize:00000000 pagesize:00001000
Section:qtime offset:0x00000148 size:0x00000048
boot:00000000 CPS:000000000219df50 rate/scale:28368794/-15 intr:17
Section:callout offset:0x000000a0 size:0x00000048
reboot:fc404604 power:fc404620
timer_load:fc404634 reload:fc404684 value:fc404698
0) display:fc4046b0 poll:fc4046d4 break:fc4046f8
1) display:00000000 poll:00000000 break:00000000
Section:cpuinfo offset:0x00000190 size:0x00000020
0) cpu:41069265 flags:40000000 speed:0000008d cache i/d:1/0 name:48
Section:cacheattr offset:0x00000440 size:0x00000040
0) flags:32 size:0020 #lines:0200 control:fc4044bc next:255
1) flags:11 size:0020 #lines:0200 control:fc404510 next:255
Section:meminfo offset:0x00000480 size:0x00000000
Section:asinfo offset:0x00000300 size:0x00000100
0000) 0000000000000000-00000000ffffffff o:ffff a:0010 p:100 c:00000000
n:21
0020) 0000000010000000-0000000011ffffff o:0000 a:0017 p:100 c:00000000
n:28
0040) 0000000010821108-000000001098c003 o:0000 a:0005 p:100 c:00000000
n:55
0060) 0000000010800000-0000000010821107 o:0000 a:0007 p:100 c:00000000
n:63
0080) 0000000010821108-000000001098c003 o:0000 a:0007 p:100 c:00000000
n:71
00a0) 0000000010000000-0000000010007fff o:0020 a:0007 p:100 c:00000000
n:79
00c0) 00000000100127b0-00000000107fffff o:0020 a:0007 p:100 c:00000000
n:79
00e0) 000000001098c004-0000000011ffffff o:0020 a:0007 p:100 c:00000000
n:79
Section:hwinfo offset:0x000002b8 size:0x00000048
0) size:3 tag:3 isize:3, iname:0, owner:65535, kids:1
12) size:3 tag:17 isize:3, iname:9, owner:0, kids:1
24) size:3 tag:3 isize:3, iname:32, owner:12, kids:1
36) size:4 tag:41 isize:4, iname:36, owner:24, kids:0
00 00 00 00
Section:typed_strings offset:0x00000240 size:0x00000020
off:0 type:5 string:'jaguar2'
off:12 type:2 string:'localhost'
Section:strings offset:0x00000260 size:0x00000058
[0]'hw' [3]'Group' [9]'unknown' [17]'Bus' [21]'memory' [28]'ram' [32]'rtc'
[36]'NONE' [41]'Device' [48]'arm926' [55]'imagefs' [63]'startup'
[71]'bootram' [79]'sysram'
Section:intrinfo offset:0x00000400 size:0x00000040
0) vector_base:00000000, #vectors:32, cascade_vector:7fffffff
cpu_intr_base:00000000, cpu_intr_stride:0, flags:0000
id => flags:8000, size:0050, rtn:fc404540
eoi => flags:9000, size:002c, rtn:fc404590
mask:fc4045bc, unmask:fc4045e0, config:00000000
Section:smp offset:0x00000480 size:0x00000000
Section:pminfo offset:0x00000480 size:0x00000000
Section:mdriver offset:0x00000480 size:0x00000000
Section:boxinfo offset:0x000001b0 size:0x00000028
hw_flags:00000000
Section:cpu offset:0x00000128 size:0x00000020
page_flush:fc404480 page_flush_deferred:fc4044b8
upte_ro:00000aae upte_rw:00000ffe
kpte_ro:0000000e kpte_rw:0000055e
mask_nc:0000000c
System page at phys:10012000 user:fc404000 kern:fc404000
Starting next program at vfe0266f4
Shutdown[0,0] S/C/F=4/1/1 C/D=fe006950/fe062490 state(c0)= now lock
QNX Version 6.3.2 Release 2006/03/16-14:15:55EST
[0]PID-TID=1-1? P/T FL=00018001/09000040
[0]ASPACE=>NULL
armle context[fe061278]:
0000: fc404000 fc404148 200000d3 00000000 200000d3 00000001 00000002
fe065cbc
0020: fe065c68 fe065c28 fe06238c fe0612d0 fe0625e0 fe0612bc fe03ac18
fc404174
0040: 200000d3
instruction[fc404174]:
f1 ff ff ff 00 00 00 00 01 00 00 00 b2 07 00 00 00 00 00 00 00 00 00 00 00
00
stack[fe0612bc]:
0000: fe060320 fe050a9c fe061304 fe0612d4 fe04e404 fe050a64 fe04e070
fe060320
0020: fe060320 fe065c28 0000001a 0000003f fe061278 fe065c28 fe06238c
fe06131c
0040: fe061308 fe03aedc fe04e098 108206e0 fe0266f4 1000bfe8 fe061320
00051078
0060: fe03ae1c 000003ff fc43e000 000000c8 00000001 00000000 00000000
fe06133c
|
|
From: Pusik P. <pa...@ke...> - 2008-02-18 13:22:31
|
Dear Everyone.
I solved callout_debug_xxxxx.S and I looked at another kernel debugging
message like the below log.
What happens?
Unfortunately, I don't know where is the problem ?
Please help me.
Best regards.
Pusik.
Brief description of my CPU and Board.
CPU Core : ARM926EJ-S 32-bit RISC
CPU Cache: 16KB I-Cache, 16KB D-Cache
CPU Clock : 141MHz
CPU interrupt sources : 29 ea
Timers : 32-bit timer 2 ea
NOR Flash : 1MB (base address = 0x0000_0000)
SDRAM : 32MB (base address = 0x1000_0000)
----------------------------------------------------------------------------
---------------------------------
QNX IPL for JAGUAR
Commands:
s: load image serially using sendnto
f: load image from flash
ipl> send image now...
Download complete, calling image_scan...
Found image, calling image_setup...
image_scan return : 10400000
signature : 0x00FF7EEB
version : 0x00000001
flags1 : 0x00000001
flags2 : 0x00000000
header_size : 0x00000100
machine : 0x00000028
startup_vaddr : 0x10801B80
paddr_bias : 0x00000000
image_paddr : 0x10800000
ram_paddr : 0x10800000
ram_size : 0x0018C004
startup_size : 0x00021108
stored_size : 0x0018C004
imagefs_paddr : 0x00000000
imagefs_size : 0x0016AEFC
preboot_size : 0x00000000
zero0 : 0x00000000
image setup complete, calling image_start...
init_raminfo
add_ram start=0x10000000, size=0x02000000
lsp.asinfo.size=0x00000000
1
as_add_containing start=268435456, end=301989887, attr=00000007, name=ram,
conta
iner=memory
2
add_mem(10000000,02000000)
alloc_ram(0x10821108,0x0016aefc,0x00000001) => 0x10821108
add_mem(1098c004,01673ffc)
find_ram(size=0x00008000, align=0x00001000, colour=0x00000000,
mask=0x00000000)
Addr=0x10000000
jaguar2_cpu_freq: F_in=32768000
alloc_ram(0x10800000,0x0018c004,0x00000001) => 0x10800000
alloc_ram(0xffffffff,0x00004000,0x00004000) => find_ram(size=0x00004000,
align=0x00004000, colour=0x00000000, mask=0x00000000)
Addr=0x10008000
add_mem(1000c000,007f4000)
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000c000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000d000
init_intrinfo
add_interrupt_array size=52, incr=52
add_interrupt
init_qtime
init_cpuinfo
Dcache: 512x32 WB
Icache: 512x32
arm926 rev 5 141MHz
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000e000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x1000f000
init_hwinfo
add_typed_string 0x00000005=jaguar2
init_system_private
add_typed_string 0x00000002=localhost
load_ifs done
as_find memory done
as_add imagefs done
as_add startup done
as_add bootram done
Find boot process 0 (inode 3758096386)
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10010000
alloc_ram(0xffffffff,0x00001000,0x00001000) => find_ram(size=0x00001000,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10011000
Load boot process '/proc/boot/procnto-instr'
boot_pgm[276963328].base=0x100001f4
boot_pgm[4261570292].entry=0x00000000
memmove done
option: c
reserved_size=0
smp_hook_rtn done
mdriver_hook done
as_add_containing start=268435456, end=268468223, attr=00000007,
name=sysram, container=ram
as_add_containing start=268509184, end=276824063, attr=00000007,
name=sysram, container=ram
as_add_containing start=278446084, end=301989887, attr=00000007,
name=sysram, container=ram
add_system done
alloc_syspage_memory
output_callouts(1) done
callouts_size=0x00000290
spsize=0x00000790
cpu_alloc_syspage_memory cpupagep=0x00000007, syspagep=0x00000000,
spsize=0x00000790
alloc_ram(addr=0xffffffff, size=0x000007b0, align=0x00001000)
alloc_ram(0xffffffff,0x000007b0,0x00001000) => find_ram(size=0x000007b0,
align=0x00001000, colour=0x00000000, mask=0x00000000)
Addr=0x10012000
cpu_alloc_syspage_memory cpupage_paddr=0x10012790, syspage_paddr=0x10012000
INIT_ENTRY(system_private) done
INIT_ENTRY(meminfo) done
INIT_ENTRY(asinfo) done
INIT_ENTRY(hwinfo) done
INIT_ENTRY(cpuinfo) done
INIT_ENTRY(cacheattr) done
INIT_ENTRY(qtime) done
INIT_ENTRY(callout) done
INIT_ENTRY(callin) done
INIT_ENTRY(typed_strings) done
INIT_ENTRY(strings) done
INIT_ENTRY(intrinfo) done
INIT_ENTRY(smp) done
INIT_ENTRY(pminfo) done
INIT_ENTRY(mdriver) done
memset cpu=0x1081fbc8, size=0x00000020
[cpu:0] startup_memory_map done
[cpu:0] memmove done
[cpu:0] startup_memory_unmap done
output_callouts(0) done
alloc_syspage_memory done
jtag_store_syspage_addr done
Header size=0x0000009c, Total Size=0x00000480, #Cpu=1, Type=4
Section:system_private offset:0x000001d8 size:0x00000068
syspage ptr user:fc404000 kernel:fc404000
cpupage ptr user:fc404790 kernel:fc404790 spacing:32
kdebug info:00000000 callback:00000000
boot pgms: idx=0
0) base paddr:10822000 start addr:fe0266f4
ramsize:00000000 pagesize:00001000
Section:qtime offset:0x00000148 size:0x00000048
boot:00000000 CPS:000000000219df50 rate/scale:28368794/-15 intr:17
Section:callout offset:0x000000a0 size:0x00000048
reboot:fc404604 power:fc404620
timer_load:fc404634 reload:fc404684 value:fc404698
0) display:fc4046b0 poll:fc4046d4 break:fc4046f8
1) display:00000000 poll:00000000 break:00000000
Section:cpuinfo offset:0x00000190 size:0x00000020
0) cpu:41069265 flags:40000000 speed:0000008d cache i/d:1/0 name:48
Section:cacheattr offset:0x00000440 size:0x00000040
0) flags:32 size:0020 #lines:0200 control:fc4044bc next:255
1) flags:11 size:0020 #lines:0200 control:fc404510 next:255
Section:meminfo offset:0x00000480 size:0x00000000
Section:asinfo offset:0x00000300 size:0x00000100
0000) 0000000000000000-00000000ffffffff o:ffff a:0010 p:100 c:00000000
n:21
0020) 0000000010000000-0000000011ffffff o:0000 a:0017 p:100 c:00000000
n:28
0040) 0000000010821108-000000001098c003 o:0000 a:0005 p:100 c:00000000
n:55
0060) 0000000010800000-0000000010821107 o:0000 a:0007 p:100 c:00000000
n:63
0080) 0000000010821108-000000001098c003 o:0000 a:0007 p:100 c:00000000
n:71
00a0) 0000000010000000-0000000010007fff o:0020 a:0007 p:100 c:00000000
n:79
00c0) 00000000100127b0-00000000107fffff o:0020 a:0007 p:100 c:00000000
n:79
00e0) 000000001098c004-0000000011ffffff o:0020 a:0007 p:100 c:00000000
n:79
Section:hwinfo offset:0x000002b8 size:0x00000048
0) size:3 tag:3 isize:3, iname:0, owner:65535, kids:1
12) size:3 tag:17 isize:3, iname:9, owner:0, kids:1
24) size:3 tag:3 isize:3, iname:32, owner:12, kids:1
36) size:4 tag:41 isize:4, iname:36, owner:24, kids:0
00 00 00 00
Section:typed_strings offset:0x00000240 size:0x00000020
off:0 type:5 string:'jaguar2'
off:12 type:2 string:'localhost'
Section:strings offset:0x00000260 size:0x00000058
[0]'hw' [3]'Group' [9]'unknown' [17]'Bus' [21]'memory' [28]'ram' [32]'rtc'
[36]'NONE' [41]'Device' [48]'arm926' [55]'imagefs' [63]'startup'
[71]'bootram' [79]'sysram'
Section:intrinfo offset:0x00000400 size:0x00000040
0) vector_base:00000000, #vectors:32, cascade_vector:7fffffff
cpu_intr_base:00000000, cpu_intr_stride:0, flags:0000
id => flags:8000, size:0050, rtn:fc404540
eoi => flags:9000, size:002c, rtn:fc404590
mask:fc4045bc, unmask:fc4045e0, config:00000000
Section:smp offset:0x00000480 size:0x00000000
Section:pminfo offset:0x00000480 size:0x00000000
Section:mdriver offset:0x00000480 size:0x00000000
Section:boxinfo offset:0x000001b0 size:0x00000028
hw_flags:00000000
Section:cpu offset:0x00000128 size:0x00000020
page_flush:fc404480 page_flush_deferred:fc4044b8
upte_ro:00000aae upte_rw:00000ffe
kpte_ro:0000000e kpte_rw:0000055e
mask_nc:0000000c
System page at phys:10012000 user:fc404000 kern:fc404000
Starting next program at vfe0266f4
Shutdown[0,0] S/C/F=4/1/1 C/D=fe006950/fe062490 state(c0)= now lock
QNX Version 6.3.2 Release 2006/03/16-14:15:55EST
[0]PID-TID=1-1? P/T FL=00018001/09000040
[0]ASPACE=>NULL
armle context[fe061278]:
0000: fc404000 fc404148 200000d3 00000000 200000d3 00000001 00000002
fe065cbc
0020: fe065c68 fe065c28 fe06238c fe0612d0 fe0625e0 fe0612bc fe03ac18
fc404174
0040: 200000d3
instruction[fc404174]:
f1 ff ff ff 00 00 00 00 01 00 00 00 b2 07 00 00 00 00 00 00 00 00 00 00 00
00
stack[fe0612bc]:
0000: fe060320 fe050a9c fe061304 fe0612d4 fe04e404 fe050a64 fe04e070
fe060320
0020: fe060320 fe065c28 0000001a 0000003f fe061278 fe065c28 fe06238c
fe06131c
0040: fe061308 fe03aedc fe04e098 108206e0 fe0266f4 1000bfe8 fe061320
00051078
0060: fe03ae1c 000003ff fc43e000 000000c8 00000001 00000000 00000000
fe06133c
|
|
From: Pusik P. <pa...@ke...> - 2008-02-18 08:48:27
|
Hello.
My 32-bit ARM9 RISC SoC has just 1 interrupt controller with 29 interrupt
sources.
If I understood the cascaded vector's meaning well, I doesn't need cascaded
vectors.
Is it right ?
const static struct startup_intrinfo intrs[] = {
{ _NTO_INTR_CLASS_EXTERNAL, // vector
base
32, //
number of vectors
_NTO_INTR_SPARE, //
cascade vector
0, //
CPU vector base
0, //
CPU vector stride
0, //
flags
{ INTR_GENFLAG_LOAD_SYSPAGE, 0, &interrupt_id_jaguar2
},
{ INTR_GENFLAG_LOAD_SYSPAGE |
INTR_GENFLAG_LOAD_INTRMASK, 0, &interrupt_eoi_jaguar2 },
&interrupt_mask_jaguar2, // mask callout
&interrupt_unmask_jaguar2, // unmask callout
0, // config
callout
}
The upper source code is my startup_intrinfo but I think its source code has
the problem.
I think that there is some proper value for a cascade vector instead of
_NTO_INTR_SPACE.
Actually, I didn't understand the meaning of the cascade vector.
Please help me.
Best regards.
Pusik.
|
|
From: Pusik P. <pa...@ke...> - 2008-02-18 08:13:30
|
Dear Everyone.
I'm debugging my BSP by TRACE32.
I built bsp-xxxxx.ifs and procnto-instr.sym.
I loaded bsp-xxxxx.ifs by TRACE32's Data.Load.Binary command at the SDRAM
memory region (0x10800000), which I set up as the System
Build/Property/General/System/Image Address.
At TRACE32,
I performed like the below
Data.LOAD.Binary C:\QNX632\ide4-workspace\bsp-jaguar\Images\bsp-jaguar.ifs
A:0x10800000 //verify
if data.long(&DNLD_ADDR)!=0x00ff7eeb
(
print "Wrong QNX image magic!"
stop
)
Register.Set PC data.long(&DNLD_ADDR+0x0c) ; startuphdr.startup_vaddr
Data.Load.Elf
C:\QNX632\ide4-workspace\bsp-jaguar\Images\startup-jaguar2eval.sym /nocode
Data.Load.Elf C:\QNX632\ide4-workspace\bsp-jaguar\Images\procnto-instr.sym
/nocode /noclear
I go my QNX and stop at any point.
I could check the startup-xxxxx2eval's symbols by TRACE32's symbol.browser.
I could look at Symbols, Variables, Functions, and Modules by
symbol.browser.
However, I could NOT look at the procnto-instr's all symbols.
I could see Global symbols and Global variables(os_version_string and
timestamp), but could NOT see any Global Functions.
How can I obtain the procnto or procnto-instr with whole Function symbols ?
My BSP went to "__hardcrash".
I looked at the below data at the window of TRACE32's Var.Frame.
SR:0xFFFF:0xFC4046D8(asm)
scrn_display(asm)
kprintf(asm)
shutdown(asm)
kdebug_enter(asm)
arm_undef(asm)
__und_entry(asm)
---> exception
SR:0xFFFF:0xFC404174(asm)
This looks like the call stack.
What's the problem ?
Please give a comment.
Additionally, I also set up the parameters below examples.
General/
Create Image? Yes
Remove File Time Stamps No
Image Name bsp-xxxxx
CPU Type armlet
Page Align Image No
Image Mount Point N/A
Default Target Location /proc/boot
Compressed No compression
Boot script bsp-xxxxx.bsh
Directories
Default permissions 777
Default User ID 0
Default Group ID 0
System
Auto Link Shared Libs Yes
Create startup sym file Yes
Create proc sym file Yes
Procnto procnto-instr
Procnto Arguments -vvv
Procnto $PATH :/proc/boot:/bin:/usr/bin
Procnto $LD_LIBRARY_PATH :/proc/boot:/lib:/usr/lib
Use APS No
Startup
WORKSPACE/bsp-xxxxx_startup-xxxxx2eval/xxxxx2eval/arm/le/startup-xxxxx2eval
Startup Arguments -vvv
Boot File binary
Image Address 0x10800000
RAM Address Default
Combine N/A
|
|
From: Uwe W. <uwa...@sw...> - 2008-01-08 08:43:38
|
-- to: from: Uwe Wannags, Hard-+Software Distribution e.K. Germany re: ------------------------------------------------------- Fuer weitere Fragen stehe ich gerne zur Verfuegung. For further questions feel free to contact. Mit freundlichen Gruessen / with best regards Uwe Wannags _______________________________________________ Uwe Wannags, Hard- + Software Distribution e.K. HR A 4338 PI Amtsgericht Pinneberg, DE13446288 Raiffeisenstrasse 4 mailto:uwa...@sw... 25451 Quickborn, Germany http://www.swd.de Tel.: +49(0)4106-6109-0 Fax: +49(0)4106-6109-40 |
|
From: Pusik P. <pa...@ke...> - 2008-01-07 13:57:12
|
Dear Developers. I got the BSP for ARM920T(Samsung S3C2410). At this time, I'm modifying this BSP for ARM926EJ-S(Samsung S3C2413). S3C2410 and S3C2413 are similar. I changed some register's address and their values. New S3C2413 Box has 1MB Flash memory and 64MB SDRAM and old s3c2410 box also has same memories. After building IPL and IFS, I met the below messages and memory dump from the ARM debugger. After downloading smdk2413.ifs image, the system crashed. [b]ipl> send image now... Download complete, calling image_scan... Found image, calling image_setup... image setup complete, calling image_start... Dcache: 256x32 WB Icache: 256x32 arm926 rev 5 200MHz System page at phys:3000f000 user:fc402000 kern:fc402000 Starting next program at vfe0264e8 [/b] ARM Debugger stop at 0xFFFF0010. I think that this address means Data Aboart. [b] FFFEFFFE ????? FFFF0000 E59FF018 ldr pc, 0xFFFF0020 FFFF0004 E59FF018 ldr pc, 0xFFFF0024 FFFF0008 E59FF018 ldr pc, 0xFFFF0028 FFFF000C E59FF018 ldr pc, 0xFFFF002C >>FFFF0010 E59FF018 ldr pc, 0xFFFF0030 FFFF0014 E59FF018 ldr pc, 0xFFFF0034 FFFF0018 E59FF018 ldr pc, 0xFFFF0038 FFFF001C E59FF018 ldr pc, 0xFFFF003C FFFF0020 FE029C14 mcr2 pc12,0x0,r9,c2,c4,0x0 FFFF0024 FE0297FC mcr2 p7,0x0,r9,c2,c12,0x7 FFFF0028 FE02930C cdp2 p3,0x0,c9,c2,c12,0x0 FFFF002C FE0298A8 cdp2 p8,0x0,c9,c2,c8,0x5 FFFF0030 FE02998C cdp2 p9,0x0,c9c2,c12,0x4 FFFF0034 FE029C14 mcr2 p12,0x0,r9,c2,c4,0x0 FFFF0038 00000000 andeq r0,r0,r0 FFFF003C FE029C18 mcr2 p12,0x0,r9,c2,c8,0x0 FFFF0040 00000000 andeq r0,r0,r0 FFFF0044 00000000 andeq r0,r0,r0 FFFF0048 00000000 andeq r0,r0,r0 FFFF004c 00000000 andeq r0,r0,r0 FFFF0050 00000000 andeq r0,r0,r0 FFFF0054 00000000 andeq r0,r0,r0 FFFF0058 00000000 andeq r0,r0,r0[/b] My physical base address of SDRAM is 0x30000000. I thought that I had some problem for MMU at this time and I would try to debug it. Please give me your valuable comments. Best regards. Pusik. :?: |
|
From: Trisno <tr...@mi...> - 2007-03-14 05:30:31
|
Hi, I new in using qnx, i was change my clocking setting in My Qnx PC by = using command " rtc -s hw " coz if i dont used this command my clock = always differend 10 hour than the original clock when my pc = restarted/hang. After i change it my clock always true even my PC restarted but i after = that i have a new problem that my PC always Hang every days, is this = corelevansi ?? Regards Trisno |
|
From: Trisno <tr...@mi...> - 2007-03-14 00:46:47
|
just testing |
|
From: fliu <mai...@ro...> - 2005-08-31 04:46:29
|
Is this list still alive? This is a test post. ----------------------------------------------------------------------------------------------------------------- Broadband interface (RIA) + mail box saftey = <a href="http://OpenQNX_Developer_List.roomity.com">Roomity.com</a> *Your* clubs, no sign up to read, ad supported; try broadband internet. ~~1125463642558~~ ----------------------------------------------------------------------------------------------------------------- |
|
From: Bsderss <sno...@ya...> - 2005-08-15 09:07:07
|
Hi I want to install development kits for cross platform development. I found the following link is may be what I m looking for: http://eqip.openqnx.com/ipaq_bsp/cross_development.html Can anyone tell me where can I download this development kit? if I need to purchase, can you also please direct me to the website? Thanks Sam __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Bsderss <sno...@ya...> - 2005-08-15 05:19:08
|
Hi, I've been searched Google for few days but still can't find any info about how to develop device drivers for Intel IXP in QNX. Can anyone please tell me some guideline and reference for device driver development in QNX? Thanks Sam __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: saravanamanikandan s. <sar...@gm...> - 2005-08-05 13:01:22
|
i am getting "socket creation is not possible " error why it occured and how to solve the problem. please give me the solution --=20 s.saravana manikandan |
|
From: soumya_jeet <sou...@in...> - 2005-06-16 08:23:20
|
dear all, i'm currently studying x11 on x86 series to check its working. completing it successfully later i'm going to start with SH7760. following links from websites i was able to 1. uncompress the file properly (XF86-4301-qnx6-bin.tar.gz) 2. set binaries and libraries path 3. configure using "XFree86 -configure", and get the file "XF86Config.new" 4. copied the same file under /etc/X11 as XF86Config-4 replacing XF86Config-4-sample finishing all these when i gave the command "startx" or "XFree86 -xf86config /root/XF86Config.new" (i tried it multiple no of times) i got the following message: (EE) I810(0) :AGP GART support is not available. Make sure your kernel has agpgart support or that the agpgart kernel module is loaded. XIO: fatal IO error 254 (Connection reset by peer) on X server ":0.0" after 0 requests (0known processed)with 0 events remaining. below i'm including some more information about log file, config file, XFree86 and OS version, video hardware in use. please suggest how to recover out of this problem. if i need to use any other video card please let me know which video card(s) can give support. regards, soumyajeet ************************************************************************************************* important contents from the log file (/var/log/XFree86.0.log): XFree86 Version 4.3.0.1 Release date : 9 may 2003 X protocol version 11, revision 0, Release 6.6 Build OS : QNX6 Build date: 17 may 2003 using config file "/etc/X11/XF86Config-4" I810 : driver for intel integrated graphics chip sets: i810, i810 -dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G ************************************************************************************************* The configure file (/etc/X11/XFconfig-4): Section "ServerLayout" Identifier "XFree86 configured" Screen 0 "Screen0" 0 0 INputDevice "Mouse0" "CorePointer" InputDevice "Keyboard" "CoreKeyboard" EndSection Section "File" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/X11/modules" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/Type1" FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" EndSection Section "Module" Load "extmod" Load "glx" Load "dbe" Load "record" Load "xtrap" Load "speedo" Load "type1" EndSection Section "inputDevice" Identifier "Keyboard0" Driver "keyboard" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "OSMouse" Option "device" "/dev/devi/mouse0" EndSection Section "Monitor" #DisplaySize 260 190 #mm Identifier "Monitor0" Vendor "SAM" ModelName "2c33" Options "DPMS" EndSection Section "Device" ### Available Driver options are:- ### Values: <i> : integer, <f> : float, <bool> : "True"/"False", ### <string>: "String", <freq> : "<f> Hz/kHz/MHz" ### [arg] : arg optional #Option "NoAccel" #[<bool>] #Option "SWcursor" #[<bool>] #Option "ColorKey" #<i> #Option "CacheLines" #<i> #Option "Dac6Bit" #[<bool>] #Option "DRI" #[<bool>] #Option "NoDDC" #[<bool>] #Option "ShowCache" #[<bool>] #Option "XvMCSurfaces" #<i> Identifier "Card0" Driver "i810" VendorName "Intel Corp." BoardName "82810 CGC [Chipset Graphics Controller]" BusID "PCI:0:1:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 1 EndSubSection SubSection "Display" Depth 4 EndSubSection SubSection "Display" Depth 8 EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 EndSubSection SubSection "Display" Depth 24 EndSubSection EndSection ************************************************************************************************* XFree86 version: XFree86 Version 4.3.0.1 Release date : 9 may 2003 X protocol version 11, revision 0, Release 6.6 Build OS : QNX6 Build date: 17 may 2003 ************************************************************************************************* Operating System: QNX 6.2.1 ************************************************************************************************* video hardware in use: I810 : driver for intel integrated graphics chip sets: i810, i810 -dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865GIndiatimes Email now powered by APIC Advantage. Help! Help |
|
From: soumya_jeet <sou...@in...> - 2005-06-16 08:22:56
|
dear all, i'm currently studying x11 on x86 series to check its working. completing it successfully later i'm going to start with SH7760. following links from websites i was able to 1. uncompress the file properly (XF86-4301-qnx6-bin.tar.gz) 2. set binaries and libraries path 3. configure using "XFree86 -configure", and get the file "XF86Config.new" 4. copied the same file under /etc/X11 as XF86Config-4 replacing XF86Config-4-sample finishing all these when i gave the command "startx" or "XFree86 -xf86config /root/XF86Config.new" (i tried it multiple no of times) i got the following message: (EE) I810(0) :AGP GART support is not available. Make sure your kernel has agpgart support or that the agpgart kernel module is loaded. XIO: fatal IO error 254 (Connection reset by peer) on X server ":0.0" after 0 requests (0known processed)with 0 events remaining. below i'm including some more information about log file, config file, XFree86 and OS version, video hardware in use. please suggest how to recover out of this problem. if i need to use any other video card please let me know which video card(s) can give support. regards, soumyajeet ************************************************************************************************* important contents from the log file (/var/log/XFree86.0.log): XFree86 Version 4.3.0.1 Release date : 9 may 2003 X protocol version 11, revision 0, Release 6.6 Build OS : QNX6 Build date: 17 may 2003 using config file "/etc/X11/XF86Config-4" I810 : driver for intel integrated graphics chip sets: i810, i810 -dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G ************************************************************************************************* The configure file (/etc/X11/XFconfig-4): Section "ServerLayout" Identifier "XFree86 configured" Screen 0 "Screen0" 0 0 INputDevice "Mouse0" "CorePointer" InputDevice "Keyboard" "CoreKeyboard" EndSection Section "File" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/X11/modules" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/Type1" FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" EndSection Section "Module" Load "extmod" Load "glx" Load "dbe" Load "record" Load "xtrap" Load "speedo" Load "type1" EndSection Section "inputDevice" Identifier "Keyboard0" Driver "keyboard" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "OSMouse" Option "device" "/dev/devi/mouse0" EndSection Section "Monitor" #DisplaySize 260 190 #mm Identifier "Monitor0" Vendor "SAM" ModelName "2c33" Options "DPMS" EndSection Section "Device" ### Available Driver options are:- ### Values: <i> : integer, <f> : float, <bool> : "True"/"False", ### <string>: "String", <freq> : "<f> Hz/kHz/MHz" ### [arg] : arg optional #Option "NoAccel" #[<bool>] #Option "SWcursor" #[<bool>] #Option "ColorKey" #<i> #Option "CacheLines" #<i> #Option "Dac6Bit" #[<bool>] #Option "DRI" #[<bool>] #Option "NoDDC" #[<bool>] #Option "ShowCache" #[<bool>] #Option "XvMCSurfaces" #<i> Identifier "Card0" Driver "i810" VendorName "Intel Corp." BoardName "82810 CGC [Chipset Graphics Controller]" BusID "PCI:0:1:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 1 EndSubSection SubSection "Display" Depth 4 EndSubSection SubSection "Display" Depth 8 EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 EndSubSection SubSection "Display" Depth 24 EndSubSection EndSection ************************************************************************************************* XFree86 version: XFree86 Version 4.3.0.1 Release date : 9 may 2003 X protocol version 11, revision 0, Release 6.6 Build OS : QNX6 Build date: 17 may 2003 ************************************************************************************************* Operating System: QNX 6.2.1 ************************************************************************************************* video hardware in use: I810 : driver for intel integrated graphics chip sets: i810, i810 -dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865GIndiatimes Email now powered by APIC Advantage. Help! Help |