<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-18142</id>
	<title>Nabble - Linux On Smart Device (ARM embedded)</title>
	<updated>2009-11-17T02:09:53Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Linux-On-Smart-Device-(ARM-embedded)-f18142.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linux-On-Smart-Device-%28ARM-embedded%29-f18142.html" />
	<subtitle type="html">Discuss using linux on smart devices such as smartphone, Multimedia player, home media center, etcs.
&lt;br&gt;The main content we're discussing including:
&lt;br&gt;1. bootloader porting
&lt;br&gt;2. Kernel porting
&lt;br&gt;3. Device driver
&lt;br&gt;4. UI(DirectFB &amp; GTK+)
&lt;br&gt;5. Interesting features
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;我在中国,希望能够利用这个论坛,和大家互相学习</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26387277</id>
	<title>Bluetooth Module (Marvel chip 8688) not working with omap3530</title>
	<published>2009-11-17T02:09:53Z</published>
	<updated>2009-11-17T02:09:53Z</updated>
	<author>
		<name>Goks</name>
	</author>
	<content type="html">Hi
&lt;br&gt;We are working with the WiFi/BT combo module WM-BG-MR-03 of USI Technologies.
&lt;br&gt;&lt;br&gt;&amp;nbsp;We have interfaced this module through UART to the OMAP3530 Processor. Currently we are facing an issue with the bluetooth interface.
&lt;br&gt;&lt;br&gt;&amp;nbsp;The device is &amp;nbsp;not &amp;nbsp;responding for BCSP/CSR protocol of bluz utility(hciconfig). When
&lt;br&gt;&amp;nbsp;we probe the Serial line between the processor and the BT module, we observed
&lt;br&gt;signal toggling in the line. Hence we feel that the initialisation sequence is issued by the processor, but the BT module is not responding to that.
&lt;br&gt;&amp;nbsp;We are updating the &amp;nbsp;firmware using &amp;nbsp;sd8688_helper.bin and &amp;nbsp;sd8688.bin.
&lt;br&gt;&lt;br&gt;&amp;nbsp;running the below commands.
&lt;br&gt;&lt;br&gt;&amp;nbsp;#hciattach ttyS1 bcsp 115200
&lt;br&gt;&amp;nbsp;#hciattach ttyS1 csr 115200
&lt;br&gt;&lt;br&gt;Both the results for above commands is
&lt;br&gt;&amp;nbsp;&amp;quot;Initialisation timed out&amp;quot;.
&lt;br&gt;&lt;br&gt;Please let me know have any used this chip ?
&lt;br&gt;&lt;br&gt;Please also help us to debug.
&lt;br&gt;&lt;br&gt;With regards
&lt;br&gt;Gokul
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bluetooth-Module-%28Marvel-chip-8688%29-not-working-with-omap3530-tp26387277p26387277.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22510556</id>
	<title>udevd beginner .......</title>
	<published>2009-03-14T01:50:46Z</published>
	<updated>2009-03-14T01:50:46Z</updated>
	<author>
		<name>91change</name>
	</author>
	<content type="html">Hi ,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I &amp;nbsp;am using linux 2.6.22 for my embedded box . &amp;nbsp;I am using &amp;nbsp;udev-140 . &amp;nbsp;I &amp;nbsp;have only one 50-rules file , in which &amp;nbsp;2 rules are written . These 2 rules are for &amp;nbsp;usb-drives . &amp;nbsp; These are working fine for me .
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; I have some applications &amp;nbsp;like dhclient , udhcpc are started in rcS script . The udevd is &amp;nbsp;started before mounting all hard drives . 
&lt;br&gt;&lt;br&gt;&lt;br&gt;********************** rcS*************************
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;mount /mnt/drive1 /dev/sda 
&lt;br&gt;&amp;nbsp;udevstart 
&lt;br&gt;&amp;nbsp;udevd &amp;
&lt;br&gt;&amp;nbsp;...........
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;ManageMyDevices &amp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // it is doing &amp;nbsp; , ifconfig eth1 192.168.1.1 up , &amp;nbsp;dhclient eth0 &amp;nbsp;etc .....
&lt;br&gt;&amp;nbsp;....................
&lt;br&gt;&amp;nbsp;....................
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;*******************************************************
&lt;br&gt;&lt;br&gt;&amp;nbsp;ManageMyDevices is a elf program written to for all High level api . So &amp;nbsp;udev rules will call theseAPI thru some interface &amp;nbsp;to mount usb drives . But if you connect usb drives and boot the embedded box , those API will fails . Becose , by the time &amp;nbsp;ManageMyDevices is not started .
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;To work this correctly , i moved the position of udevd down like the below 
&lt;br&gt;&lt;br&gt;********************** rcS*************************
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;mount /mnt/drive1 /dev/sda 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;ManageMyDevices &amp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // it is doing &amp;nbsp; , ifconfig eth1 192.168.1.1 up , &amp;nbsp;dhclient eth0 &amp;nbsp;etc .....
&lt;br&gt;&amp;nbsp;....................
&lt;br&gt;&amp;nbsp;....................
&lt;br&gt;&lt;br&gt;udevstart 
&lt;br&gt;&amp;nbsp;udevd &amp;
&lt;br&gt;&amp;nbsp;...........
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;*******************************************************
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Now everything seems to work ....But if the box boots up and i do ifconfig &amp;nbsp;.........eth0 is down .......Is udevd should be started before doing ifconfig ..
&lt;br&gt;&lt;br&gt;My understanding ...
&lt;br&gt;&lt;br&gt;&amp;nbsp;1) udevd rules does not containg rules for eth0
&lt;br&gt;&amp;nbsp;2) udevd is entirely on userspace 
&lt;br&gt;&amp;nbsp;3) udevd is exclusively used for character , block 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Karana .</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/udevd-beginner-.......-tp22510556p22510556.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20378653</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-07T03:14:02Z</published>
	<updated>2008-11-07T03:14:02Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---jobs-tp20378653p20378653.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19861572</id>
	<title>flash.img mount</title>
	<published>2008-10-07T09:06:34Z</published>
	<updated>2008-10-07T09:06:34Z</updated>
	<author>
		<name>91change</name>
	</author>
	<content type="html">i have a flash.img that contains &amp;nbsp;half ext2 and half squashfs . &amp;nbsp;Can i use mount command to see any one of the filesystem &amp;nbsp;?
&lt;br&gt;I am able to mount individual parts if spliited and mount .
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/flash.img-mount-tp19861572p19861572.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19861514</id>
	<title>linux kenel compiling</title>
	<published>2008-10-07T09:04:32Z</published>
	<updated>2008-10-07T09:04:32Z</updated>
	<author>
		<name>91change</name>
	</author>
	<content type="html">i tried to build linux for my embedded box (linux 2.6.22.18 ) . I have the lsp for the borad .I copied it .But i get following error ..Can you please show some clue on what may went wrong ? i have marked some in red ink for your convinience .Tool chain are already installed and is able to build some pakages like samba . 
&lt;br&gt;&lt;br&gt;&lt;br&gt;make -f scripts/Makefile.build obj=scripts/basic
&lt;br&gt;make -f scripts/Makefile.build obj=.
&lt;br&gt;mkdir -p arch/arm/kernel/
&lt;br&gt;make -f scripts/Makefile.build obj=. missing-syscalls
&lt;br&gt;/bin/sh scripts/checksyscalls.sh arm-none-linux-gnueabi-gcc -Wp,-MD,./.missing-syscalls.d -nostdinc -isystem /vob/magma/trunk/toolchain/kirkwood/arm-none-linux-gnueabi/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.1/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -mlittle-endian -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -DMOT_HMG21x0=2 -Os -marm -ffunction-sections -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5t -mtune=marvell-f -msoft-float -Uarm -fno-omit-frame-pointer -fno-optimize-sibling-calls -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -D&amp;quot;KBUILD_STR(s)=#s&amp;quot; -D&amp;quot;KBUILD_BASENAME=KBUILD_STR(missing_syscalls)&amp;quot; -D&amp;quot;KBUILD_MODNAME=KBUILD_STR(missing_syscalls)&amp;quot;
&lt;br&gt;cc1: error: stdout: Value too large for defined data type
&lt;br&gt;make[4]: *** [missing-syscalls] Error 1
&lt;br&gt;make[3]: *** [prepare0] Error 2
&lt;br&gt;make[3]: Leaving directory `/vob/magma/trunk/build/arm/kirkwood/linux-2.6.22.18'
&lt;br&gt;make[2]: *** [.linux-build-make] Error 2
&lt;br&gt;make[2]: Leaving directory `/vob/magma/trunk/make.inc/linux'
&lt;br&gt;make[1]: *** [build] Error 2
&lt;br&gt;make[1]: Leaving directory `/vob/magma/trunk/make.inc/linux'
&lt;br&gt;make: *** [build] Error 2
&lt;br&gt;&lt;br&gt;Is there any env varible it can affect ?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/linux-kenel-compiling-tp19861514p19861514.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19457906</id>
	<title>Training &amp; jobs</title>
	<published>2008-09-12T08:09:38Z</published>
	<updated>2008-09-12T08:09:38Z</updated>
	<author>
		<name>KiranGupta</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;FREE TRAINING 
&lt;br&gt;FOOD ACCOMODATION 
&lt;br&gt;H1B PROCESSING 	FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;EXCELLENT OPPRTUNITIES 
&lt;br&gt;TRAINING 
&lt;br&gt;PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;Excellent communication skills. 
&lt;br&gt;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status (EAD, GC). 
&lt;br&gt;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;Willing to relocate anywhere in USA. 
&lt;br&gt;What’s The Deal: 
&lt;br&gt;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;Green Card sponsorship through PERM 
&lt;br&gt;Job focused professional training in 
&lt;br&gt;Java/ J2EE 
&lt;br&gt;.NET 
&lt;br&gt;Documentum 
&lt;br&gt;Share point 
&lt;br&gt;Oracle 
&lt;br&gt;Data Modeling 
&lt;br&gt;Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;Guarantee lowest bench period. 
&lt;br&gt;Employee referral program. 
&lt;br&gt;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us at:609-843-0312 
&lt;br&gt;or 		
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---jobs-tp19457906p19457906.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19101536</id>
	<title>FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'</title>
	<published>2008-08-21T22:32:01Z</published>
	<updated>2008-08-21T22:32:01Z</updated>
	<author>
		<name>ManojKwal</name>
	</author>
	<content type="html">Dear all,
&lt;br&gt;&lt;br&gt;I have a SoC(arm926ejs) running linux kernel 2.6.18. This chip have usb device contrroler. For this controller i developed a low level driver and gadget driver. When i make this gadget driver as built in, no issue in compiling kernel. But when i make this gadget driver as mdoule and compile the kernel, uImage is build suceesfully but gadget .ko is not made. One error come &amp;quot;FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'&amp;quot;
&lt;br&gt;&lt;br&gt;g_drm.c is the gadget driver file.
&lt;br&gt;&lt;br&gt;Complete log is as following:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;LD &amp;nbsp; &amp;nbsp; &amp;nbsp;arch/arm/boot/compressed/vmlinux
&lt;br&gt;&amp;nbsp; OBJCOPY arch/arm/boot/zImage
&lt;br&gt;&amp;nbsp; Kernel: arch/arm/boot/zImage is ready
&lt;br&gt;&amp;nbsp; Building modules, stage 2.
&lt;br&gt;&amp;nbsp; MODPOST
&lt;br&gt;FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'
&lt;br&gt;make[1]: *** [__modpost] Error 1
&lt;br&gt;make: *** [modules] Error 2
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;can anybody help me, how to resolve this issue.
&lt;br&gt;&lt;br&gt;Thank you in Advance,
&lt;br&gt;&lt;br&gt;Manoj Khandelwal
&lt;br&gt;Software engineer
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FATAL%3A-modpost%3A-GPL-incompatible-module-g_drm.ko-uses-GPL-only-symbol-%27dev_driver_string%27-tp19101536p19101536.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19101530</id>
	<title>FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'</title>
	<published>2008-08-21T22:31:39Z</published>
	<updated>2008-08-21T22:31:39Z</updated>
	<author>
		<name>ManojKwal</name>
	</author>
	<content type="html">Dear all,

I have a SoC(arm926ejs) running linux kernel 2.6.18. This chip have usb device contrroler. For this controller i developed a low level driver and gadget driver. When i make this gadget driver as built in, no issue in compiling kernel. But when i make this gadget driver as mdoule and compile the kernel, uImage is build suceesfully but gadget .ko is not made. One error come &quot;FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'&quot;

g_drm.c is the gadget driver file.

Complete log is as following:




 LD      arch/arm/boot/compressed/vmlinux
  OBJCOPY arch/arm/boot/zImage
  Kernel: arch/arm/boot/zImage is ready
  Building modules, stage 2.
  MODPOST
FATAL: modpost: GPL-incompatible module g_drm.ko uses GPL-only symbol 'dev_driver_string'
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2





can anybody help me, how to resolve this issue.

Thank you in Advance,

Manoj Khandelwal
Software engineer
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FATAL%3A-modpost%3A-GPL-incompatible-module-g_drm.ko-uses-GPL-only-symbol-%27dev_driver_string%27-tp19101530p19101530.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18629717</id>
	<title>Linux Bootup hangs after adding RealTime Premption and HR-Timer</title>
	<published>2008-07-24T04:08:29Z</published>
	<updated>2008-07-24T04:08:29Z</updated>
	<author>
		<name>p_ashish</name>
	</author>
	<content type="html">&lt;br&gt;Hi All,
&lt;br&gt;&lt;br&gt;My Hardware is ARM based and the I am using ELDK (linux-2.6.19.2). I added a patch for Real-Time Preemption and it did work. I added High Resolution Timer as well (added architecture specific code). But &amp;nbsp;after this change the system hangs during the boot-up itself.
&lt;br&gt;&lt;br&gt;Following is the boot log:
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------POWER OFF PHY-------------------PHY POWERED OFF SUCCESSFULLY-------#
&lt;br&gt;# Booting image at 01600000 ...
&lt;br&gt;&amp;nbsp; &amp;nbsp;Image Name: &amp;nbsp; Linux-2.6.19.2
&lt;br&gt;&amp;nbsp; &amp;nbsp;Image Type: &amp;nbsp; ARM Linux Kernel Image (uncompressed)
&lt;br&gt;&amp;nbsp; &amp;nbsp;Data Size: &amp;nbsp; &amp;nbsp;1400696 Bytes = &amp;nbsp;1.3 MB
&lt;br&gt;&amp;nbsp; &amp;nbsp;Load Address: 00008000
&lt;br&gt;&amp;nbsp; &amp;nbsp;Entry Point: &amp;nbsp;00008000
&lt;br&gt;OK
&lt;br&gt;&lt;br&gt;Starting kernel ...
&lt;br&gt;&lt;br&gt;Uncompressing Linux.............................................................
&lt;br&gt;.............................. done, booting the kernel.
&lt;br&gt;Linux version 2.6.19.2 (pashish@dlhl0011) (gcc version 4.0.0 (DENX ELDK 4.1 4.0.
&lt;br&gt;0)) #71 PREEMPT Thu Jul 24 14:52:27 IST 2008
&lt;br&gt;CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
&lt;br&gt;Machine: STM-spearplus
&lt;br&gt;Memory policy: ECC disabled, Data cache writeback
&lt;br&gt;CPU0: D VIVT write-back cache
&lt;br&gt;CPU0: I cache: 16384 bytes, associativity 4, 32 byte lines, 128 sets
&lt;br&gt;CPU0: D cache: 16384 bytes, associativity 4, 32 byte lines, 128 sets
&lt;br&gt;Real-Time Preemption Support (C) 2004-2006 Ingo Molnar
&lt;br&gt;Built 1 zonelists. &amp;nbsp;Total pages: 16256
&lt;br&gt;Kernel command line: console=ttyS0 root=/dev/ram0 initrd=0x00800040,7M
&lt;br&gt;WARNING: experimental RCU implementation.
&lt;br&gt;PID hash table entries: 256 (order: 8, 1024 bytes)
&lt;br&gt;&lt;br&gt;tmr allocated for ticks Tmr id = 1
&lt;br&gt;&amp;nbsp;&amp;lt;6&amp;gt; Timer0: time_init(): &amp;nbsp;TICK_RATE: 48000000, HZ: , period: 100
&lt;br&gt;Inactive clock event device hrt Clock Event registered
&lt;br&gt;HRT Clk Event mult=0xc49ba5
&lt;br&gt;start_kernel(): bug: interrupts were enabled early
&lt;br&gt;Console: colour dumDentry cache hash table entries: 8192 (order: 3, 32768 bytes)
&lt;br&gt;Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
&lt;br&gt;Memory: 64MB = 64MB total
&lt;br&gt;Memory: 54752KB available (2344K code, 495K data, 104K init)
&lt;br&gt;Mount-cache hash table entries: 512
&lt;br&gt;CPU: Testing write buffer coherency: ok
&lt;br&gt;BUG: time warp detected!
&lt;br&gt;prev &amp;gt; now, 0000000000000000 &amp;gt; a50923cf1312d000:
&lt;br&gt;= 6554668410375843840 delta, on CPU#0
&lt;br&gt;checking if image is initramfs...it isn't (no cpio magic); looks like an initrd
&lt;br&gt;Freeing initrd memory: 7168K
&lt;br&gt;NET: Registered protocol family 16
&lt;br&gt;AMBA peripheral sh:00 registered = 0
&lt;br&gt;SCSI subsystem initialized
&lt;br&gt;usbcore: registered new interface driver usbfs
&lt;br&gt;usbcore: registered new interface driver hub
&lt;br&gt;usbcore: registered new device driver usb
&lt;br&gt;NET: Registered protocol family 2
&lt;br&gt;IP route cache hash table entries: 512 (order: -1, 2048 bytes)
&lt;br&gt;TCP established hash table entries: 2048 (order: 4, 65536 bytes)
&lt;br&gt;TCP bind hash table entries: 1024 (order: 2, 28672 bytes)
&lt;br&gt;TCP: Hash tables configured (established 2048 bind 1024)
&lt;br&gt;TCP reno registered
&lt;br&gt;HRT Clk Source mult=0x4d555555
&lt;br&gt;NetWinder Floating Point Emulator V0.97 (double precision)
&lt;br&gt;JFFS2 version 2.2. (NAND) (C) 2001-2006 Red Hat, Inc.
&lt;br&gt;io scheduler noop registered
&lt;br&gt;io scheduler anticipatory registered
&lt;br&gt;io scheduler deadline registered
&lt;br&gt;io scheduler cfq registered (default)
&lt;br&gt;CLCD: spearplus hardware, Samsung LMS700 display
&lt;br&gt;SPEAR :: Initializing in drivers ST Microelectronics SPEAR UART -- CPG &amp;nbsp;inside U
&lt;br&gt;ART
&lt;br&gt;ttyS0 at I/O 0x0 (irq = 24) is a ST Microelectronics SPEAR UART -- CPG
&lt;br&gt;ttyS1 at I/O 0x0 (irq = 25) is a ST Microelectronics SPEAR UART -- CPRAMDISK dri
&lt;br&gt;ver initialized: 16 RAM disks of 8192K size 1024 blocksize
&lt;br&gt;ST SPEARPLUS Ethernet Driver version 0.1
&lt;br&gt;&lt;br&gt;Size of struct eth_priv is 2016
&lt;br&gt;struct eth_priv start(Virtual) address is ffd90000
&lt;br&gt;struct eth_priv start(Physical) address is 3a31000
&lt;br&gt;Physical address of Tx Descriptor chain is 3a31000
&lt;br&gt;Physical address of Rx Descriptor chain is 3a31300&amp;lt;6&amp;gt;st: Version 20050830, fixed
&lt;br&gt;&amp;nbsp;bufsize 32768, s/g segs 256
&lt;br&gt;osst :I: Tape driver with OnStream support version 0.99.4
&lt;br&gt;osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
&lt;br&gt;STW Serial Flash initializing...
&lt;br&gt;&lt;br&gt;&amp;nbsp;Memory slot 1 is empty
&lt;br&gt;&lt;br&gt;&amp;nbsp;Memory slot 2 is empty
&lt;br&gt;&lt;br&gt;&amp;nbsp;Memory slot 3 is empty
&lt;br&gt;&lt;br&gt;&amp;nbsp;The partitioning is done as mentioned (static)
&lt;br&gt;Creating 5 MTD partitions on &amp;quot;ST M25P64&amp;quot;:
&lt;br&gt;0x00000000-0x00010000 : &amp;quot;Xloader&amp;quot;
&lt;br&gt;0x00010000-0x00050000 : &amp;quot;UBoot&amp;quot;
&lt;br&gt;0x00050000-0x00300000 : &amp;quot;kernel&amp;quot;
&lt;br&gt;0x00300000-0x007f0000 : &amp;quot;Root File system&amp;quot;
&lt;br&gt;0x007f0000-0x00800000 : &amp;quot;Temp&amp;quot;
&lt;br&gt;ATI STW Serial Flash Device initialization done.
&lt;br&gt;&lt;br&gt;Inside nand probe function
&lt;br&gt;NAND device: Manufacturer ID: 0x20, Chip ID: 0x76 (ST Micro NAND 64MiB 3,3V 8-bi
&lt;br&gt;t)
&lt;br&gt;Scanning device for bad blocks
&lt;br&gt;Bad eraseblock 52 at 0x000d0000
&lt;br&gt;Bad eraseblock 2073 at 0x02064000
&lt;br&gt;Bad eraseblock 3636 at 0x038d0000
&lt;br&gt;Creating 6 MTD partitions on &amp;quot;NAND 64MiB 3,3V 8-bit&amp;quot;:
&lt;br&gt;0x00000000-0x00010000 : &amp;quot;X-Loader&amp;quot;
&lt;br&gt;0x00010000-0x00014000 : &amp;quot;Mem Init Func&amp;quot;
&lt;br&gt;0x00014000-0x00054000 : &amp;quot;U-Boot&amp;quot;
&lt;br&gt;0x00054000-0x00354000 : &amp;quot;Kernel+Initrd images&amp;quot;
&lt;br&gt;0x00354000-0x00d54000 : &amp;quot;Root filesystem&amp;quot;
&lt;br&gt;0x00d54000-0x04000000 : &amp;quot;user filesystem&amp;quot;
&lt;br&gt;Registering EHCI SPEAR driver
&lt;br&gt;Enter ehci_hcd_spear_drv_probe
&lt;br&gt;ehci_hcd ehci_hcd.2: SPEAr EHCI
&lt;br&gt;ehci_hcd ehci_hcd.2: new USB bus registered, assigned bus number 1
&lt;br&gt;ehci_hcd ehci_hcd.2: irq 59, io mem 0xe1800000
&lt;br&gt;ehci_hcd ehci_hcd.2: USB 0.0 started, EHCI 1.00, driver 10 Dec 2004
&lt;br&gt;usb usb1: configuration #1 chosen from 1 choice
&lt;br&gt;hub 1-0:1.0: USB hub found
&lt;br&gt;hub 1-0:1.0: 1 port detected
&lt;br&gt;Enter ehci_hcd_spear_drv_probe
&lt;br&gt;ehci_hcd ehci_hcd.3: SPEAr EHCI
&lt;br&gt;ehci_hcd ehci_hcd.3: new USB bus registered, assigned bus number 2
&lt;br&gt;ehci_hcd ehci_hcd.3: irq 61, io mem 0xe2000000
&lt;br&gt;ehci_hcd ehci_hcd.3: USB 0.0 started, EHCI 1.00, driver 10 Dec 2004
&lt;br&gt;usb usb2: configuration #1 chosen from 1 choice
&lt;br&gt;hub 2-0:1.0: USB hub found
&lt;br&gt;hub 2-0:1.0: 1 port detected
&lt;br&gt;Loading OHCI SPEAR driver
&lt;br&gt;Enter ohci_hcd_syn_drv_probe
&lt;br&gt;ENTERING OHCI SPEAR PROBE
&lt;br&gt;ohci_hcd ohci_hcd.0: SPEAr OHCI
&lt;br&gt;ohci_hcd ohci_hcd.0: new USB bus registered, assigned bus number 3
&lt;br&gt;ohci_hcd ohci_hcd.0: irq 58, io mem 0xe1900000
&lt;br&gt;usb usb3: configuration #1 chosen from 1 choice
&lt;br&gt;hub 3-0:1.0: USB hub found
&lt;br&gt;hub 3-0:1.0: 1 port detected
&lt;br&gt;Enter ohci_hcd_syn_drv_probe
&lt;br&gt;ENTERING OHCI SPEAR PROBE
&lt;br&gt;ohci_hcd ohci_hcd.1: SPEAr OHCI
&lt;br&gt;ohci_hcd ohci_hcd.1: new USB bus registered, assigned bus number 4
&lt;br&gt;ohci_hcd ohci_hcd.1: irq 60, io mem 0xe2100000
&lt;br&gt;usb usb4: configuration #1 chosen from 1 choice
&lt;br&gt;hub 4-0:1.0: USB hub found
&lt;br&gt;hub 4-0:1.0: 1 port detected
&lt;br&gt;Initializing USB Mass Storage driver...
&lt;br&gt;usbcore: registered new interface driver usb-storage
&lt;br&gt;USB Mass Storage support registered.
&lt;br&gt;usbcore: registered new interface driver usbtest
&lt;br&gt;mice: PS/2 mouse device common for all mice
&lt;br&gt;&lt;br&gt;Real Time Clock Driver Initialized
&lt;br&gt;TCP cubic registered
&lt;br&gt;NET: Registered protocol family 1
&lt;br&gt;NET: Registered protocol family 17
&lt;br&gt;802.1Q VLAN Support v1.8 Ben Greear &amp;lt;greearb@candelatech.com&amp;gt;
&lt;br&gt;All bugs added by David S. Miller &amp;lt;davem@redhat.com&amp;gt;
&lt;br&gt;Time: hrt Clock Source clocksource has been installed.
&lt;br&gt;Clock event device hrt Clock Event configured with caps set: 08
&lt;br&gt;Switched to high resolution mode on CPU 0
&lt;br&gt;RAMDISK: Compressed image found at block 0
&lt;br&gt;EXT2-fs warning: checktime reached, running e2fsck is recommended
&lt;br&gt;VFS: Mounted root (ext2 filesystem).
&lt;br&gt;INIT: version 2.85 booting
&lt;br&gt;0
&lt;br&gt;mknod: invalid option -- -
&lt;br&gt;BusyBox v1.00-rc3 (2005.07.23-08:39+0000) multi-call binary
&lt;br&gt;&lt;br&gt;Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR
&lt;br&gt;&lt;br&gt;Create a special file (block, character, or pipe).
&lt;br&gt;&lt;br&gt;Options:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -m &amp;nbsp; &amp;nbsp; &amp;nbsp;create the special file using the specified mode (default a=rw)
&lt;br&gt;&lt;br&gt;TYPEs include:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; b: &amp;nbsp; &amp;nbsp; &amp;nbsp;Make a block (buffered) device.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c or u: Make a character (un-buffered) device.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p: &amp;nbsp; &amp;nbsp; &amp;nbsp;Make a named pipe. MAJOR and MINOR are ignored for named pipes.
&lt;br&gt;&lt;br&gt;Mounting a tmpfs over /dev...done.
&lt;br&gt;Creating initial device nodes...done.
&lt;br&gt;mknod: invalid option -- -
&lt;br&gt;BusyBox v1.00-rc3 (2005.07.23-08:39+0000) multi-call binary
&lt;br&gt;&lt;br&gt;Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR
&lt;br&gt;&lt;br&gt;Create a special file (block, character, or pipe).
&lt;br&gt;&lt;br&gt;Options:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -m &amp;nbsp; &amp;nbsp; &amp;nbsp;create the special file using the specified mode (default a=rw)
&lt;br&gt;&lt;br&gt;TYPEs include:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; b: &amp;nbsp; &amp;nbsp; &amp;nbsp;Make a block (buffered) device.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c or u: Make a character (un-buffered) device.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p: &amp;nbsp; &amp;nbsp; &amp;nbsp;Make a named pipe. MAJOR and MINOR are ignored for named pipes.
&lt;br&gt;&lt;br&gt;0
&lt;br&gt;Starting mounting &amp;nbsp;local flesystems: mount none on /var/run type tmpfs (rw)
&lt;br&gt;none on /tmp type tmpfs (rw)
&lt;br&gt;Setting up IP spoofing protection: rp_filter.
&lt;br&gt;Disable TCP/IP Explicit Congestion Notification: done.
&lt;br&gt;Starting network interfaces: udhcpc (v0.9.9-pre) started
&lt;br&gt;udhcpc[871]: udhcpc (v0.9.9-pre) started
&lt;br&gt;Sending discover...
&lt;br&gt;udhcpc[871]: Sending discover...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Can someone help me for this (whoever did RealTime Preemption and HR Timer for Kernel)? 
&lt;br&gt;Any help/hint will be highly appreciated :)
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;Ashish
&lt;br&gt;&amp;nbsp;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linux-Bootup-hangs-after-adding-RealTime-Premption-and-HR-Timer-tp18629717p18629717.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16671680</id>
	<title>bitbake Build failure (Maybe because of LOCALE?)</title>
	<published>2008-04-14T00:31:47Z</published>
	<updated>2008-04-14T00:31:47Z</updated>
	<author>
		<name>Liorrrrr</name>
	</author>
	<content type="html">Hello, 
&lt;br&gt;&lt;br&gt;I use Ubuntu and I've been trying to install gumstix-oe according to the following instructions: 
&lt;br&gt;&lt;a href=&quot;http://www.gumstix.net/Software/view/Getting-started/Quick-start/111.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gumstix.net/Software/view/Getting-started/Quick-start/111.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;The build stops with the following error: 
&lt;br&gt;&lt;br&gt;NOTE: Running task 202 of 1391 (ID: 238, /media/host/gumstix/gumstix-oe/org.openembedded.snapshot/packages/git/git-native_1.5.2.3.bb, do_unpack) 
&lt;br&gt;NOTE: package git-native-1.5.2.3: started 
&lt;br&gt;NOTE: package git-native-1.5.2.3-r4: task do_unpack: started 
&lt;br&gt;NOTE: Unpacking /usr/share/sources/git-1.5.2.3.tar.bz2 to /media/host/gumstix/gumstix-oe/tmp/work/i686-linux/git-native-1.5.2.3-r4/ 
&lt;br&gt;tar: git-1.5.2.3/gitweb/test/Märchen: Cannot open: Invalid or incomplete multibyte or wide character 
&lt;br&gt;tar: Skipping to next header 
&lt;br&gt;tar: Error exit delayed from previous errors 
&lt;br&gt;NOTE: Task failed: 
&lt;br&gt;NOTE: package git-native-1.5.2.3-r4: task do_unpack: failed 
&lt;br&gt;ERROR: TaskFailed event exception, aborting 
&lt;br&gt;NOTE: package git-native-1.5.2.3: failed 
&lt;br&gt;ERROR: Build of /media/host/gumstix/gumstix-oe/org.openembedded.snapshot/packages/git/git-native_1.5.2.3.bb do_unpack failed 
&lt;br&gt;ERROR: Task 238 (/media/host/gumstix/gumstix-oe/org.openembedded.snapshot/packages/git/git-native_1.5.2.3.bb, do_unpack) failed 
&lt;br&gt;NOTE: Tasks Summary: Attempted 201 tasks of which 0 didn't need to be rerun and 1 failed. 
&lt;br&gt;ERROR: '/media/host/gumstix/gumstix-oe/org.openembedded.snapshot/packages/git/git-native_1.5.2.3.bb' failed 
&lt;br&gt;&lt;br&gt;I guess the problem has to do with the &amp;quot;git-1.5.2.3/gitweb/test/Märchen&amp;quot; filename, which probably cannot be handled by bash? 
&lt;br&gt;&lt;br&gt;Is my assumption seem reasonable? How can I solve this? 
&lt;br&gt;&lt;br&gt;Thanks, 
&lt;br&gt;Lior. 
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/bitbake-Build-failure-%28Maybe-because-of-LOCALE-%29-tp16671680p16671680.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-13640494</id>
	<title>EP9315   Universal Platform, System-on-Chip Processor(china)</title>
	<published>2007-11-07T18:56:25Z</published>
	<updated>2007-11-07T18:56:25Z</updated>
	<author>
		<name>yuereye</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;GuangZhou DeviceGate Technology Co.,Ltd.(china)
&lt;br&gt;Web address:&lt;a href=&quot;http://www.devicegate.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.devicegate.com&lt;/a&gt;&lt;br&gt;Contact Person::wangfeng
&lt;br&gt;Tel: +86-20-82317785,+86-20-82317786 -602
&lt;br&gt;Fax: +86-20-82317786-603
&lt;br&gt;E-mail: feng@devicegate.com 
&lt;br&gt;MSN: yuereye @Hotmail.com 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Description
&lt;br&gt;&amp;nbsp;
&lt;br&gt;The EP9315 is a highly integrated system-on-chip processor that paves the way 
&lt;br&gt;&lt;br&gt;for next-generation consumer and industrial electronic products. The EP9315 
&lt;br&gt;&lt;br&gt;features an advanced 200 MHz ARM920T processor design with a memory 
&lt;br&gt;&lt;br&gt;management unit (MMU) that supports Linux? Windows CE?and many other embedded 
&lt;br&gt;&lt;br&gt;operating systems. The ARM920T's 32-bit microcontroller architecture, with a 
&lt;br&gt;&lt;br&gt;five-stage pipeline, delivers impressive performance at very low power.
&lt;br&gt;Designers of digital media servers, jukeboxes, telematic control systems, 
&lt;br&gt;&lt;br&gt;thin clients, set-top boxes, point-of-sale terminals, industrial controls, 
&lt;br&gt;&lt;br&gt;biometric security systems and GPS devices will benefit from the EP9315's 
&lt;br&gt;&lt;br&gt;integrated architecture and advanced features. In fact, with its broad range 
&lt;br&gt;&lt;br&gt;of peripheral interfaces, the EP9315 is suited to even more applications. By 
&lt;br&gt;&lt;br&gt;enabling or disabling the EP9315's peripheral interfaces, designers can also 
&lt;br&gt;&lt;br&gt;reduce development costs and accelerate time to market by creating a single 
&lt;br&gt;&lt;br&gt;platform that can be modified to deliver differentiated end products.
&lt;br&gt;&lt;br&gt;Cirrus Logic's embedded processor products are complemented by a range of 
&lt;br&gt;&lt;br&gt;complete operating systems. Both Microsoft?Windows CE.NETand Linux?solutions 
&lt;br&gt;&lt;br&gt;are available with total driver support.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;Features
&lt;br&gt;&amp;nbsp;
&lt;br&gt;200 MHz ARM920T processor 
&lt;br&gt;16 KB data cache and 16 KB instruction cache 
&lt;br&gt;MMU enabling Linux?and Windows CE?
&lt;br&gt;100 MHz system bus 
&lt;br&gt;MaverickCrunch?math engine 
&lt;br&gt;Floating point, integer and signal-processing instructions 
&lt;br&gt;Hardware interlocks allow in-line coding 
&lt;br&gt;MaverickKeyIDs for digital rights management or design IP security (special 
&lt;br&gt;&lt;br&gt;order feature) 
&lt;br&gt;32-bit unique ID and 128-bit random ID 
&lt;br&gt;Integrated peripheral interfaces 
&lt;br&gt;PCMCIA interface 
&lt;br&gt;Graphics accelerator 
&lt;br&gt;EIDE, up to two devices 
&lt;br&gt;1/10/100 Mbps Ethernet MAC 
&lt;br&gt;Three-port USB 2.0 full-speed host (OHCI) 
&lt;br&gt;Three UARTs (16550 type) 
&lt;br&gt;IrDA interface, slow and fast mode 
&lt;br&gt;LCD interface with dedicated SDRAM channel 
&lt;br&gt;Touchscreen interface 
&lt;br&gt;SPI port 
&lt;br&gt;AC '97 interface 
&lt;br&gt;IIS interface, up to six channels 
&lt;br&gt;8x8 keypad scanner 
&lt;br&gt;External memory options 
&lt;br&gt;32-bit SDRAM interface, up to four banks 
&lt;br&gt;32/16/8-bit SRAM/Flash/ROM I/F 
&lt;br&gt;Serial EEPROM interface 
&lt;br&gt;Internal peripherals 
&lt;br&gt;Real-time clock with software trim 
&lt;br&gt;12 DMA channels for data transfer that maximizes system performance 
&lt;br&gt;Boot ROM 
&lt;br&gt;Dual PLLs control all clock domains 
&lt;br&gt;Watchdog timer 
&lt;br&gt;Two general-purpose 32-bit timers 
&lt;br&gt;40-bit debug timer 
&lt;br&gt;General-purpose I/Os (GPIOs) 
&lt;br&gt;16 enhanced GPIOs including interrupt capability 
&lt;br&gt;49 additional optional GPIOs on peripherals 
&lt;br&gt;Package: 352-pin PBGA; option for lead-free assembly and industrial 
&lt;br&gt;&lt;br&gt;temperature ratings Diagram
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;DG9315-1.2 Single Board Computer Hardware Info.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;MPU &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; 200 MHz Digital Cirrus EP9315 ARM9 RISC processor &amp;nbsp; 
&lt;br&gt;Memory &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; 64MB SDRAM &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; 32MB NorFlash
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; 256MB NandFlash
&lt;br&gt;External memory Interfaces
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; IDE (44-pin) 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; CF Card &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;Other Interfaces
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; RTC+Battery
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; 8x8 KeyPad 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; Two USB 2.0 Full-Speed Host Ports(12Mbps) &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One TFT-LCD Connector(DF9-41S-1V,Hirose) Support 640×480、800×600
&lt;br&gt;Expanslon Connector(64-Pin)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One JTAG 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One CAN-bus
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; DC +12V Power
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; Two RS485 Ports &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One 9-wire RS232C
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; Two 3-wire RS232C &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One Four-Wire Touchscreen &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; One 10/100Mbps Ethernet port(RJ45)
&lt;br&gt;Mechanical dimensions 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; Size：145x102mm
&lt;br&gt;Operating Environments 
&lt;br&gt;•	Windows CE 
&lt;br&gt;•	Linux 
&lt;br&gt;•	Others (contact factory for all options)
&lt;br&gt;&lt;br&gt;&lt;br&gt;GuangZhou DeviceGate Technology Co.,Ltd.(china)
&lt;br&gt;Web address:&lt;a href=&quot;http://www.devicegate.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.devicegate.com&lt;/a&gt;&lt;br&gt;Contact Person::wangfeng
&lt;br&gt;Tel: +86-20-82317785,+86-20-82317786 -602
&lt;br&gt;Fax: +86-20-82317786-603
&lt;br&gt;E-mail: feng@devicegate.com 
&lt;br&gt;MSN: yuereye @Hotmail.com 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EP9315---Universal-Platform%2C-System-on-Chip-Processor%28china%29-tp13640494p13640494.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12729727</id>
	<title>EMBEDDED SYSTEM SOFTWARE LEAD</title>
	<published>2007-09-16T23:50:43Z</published>
	<updated>2007-09-16T23:50:43Z</updated>
	<author>
		<name>Yuvi123</name>
	</author>
	<content type="html">Please send your resume to rkhanna@NVIDIA.com
&lt;br&gt;&lt;br&gt;EMBEDDED SYSTEM SOFTWARE LEAD #745552
&lt;br&gt;&lt;br&gt;DESCRIPTION/RESPONSIBILITIES:
&lt;br&gt;&lt;br&gt;Design and implement low level drivers and software for various embedded operating systems including Linux, VxWorks, QNX, and Windows CE on a variety of CPU platforms including x86, PowerPC, ARM and SH4. Use your experience in processor architecture, embedded operating systems and hardware fundamentals to support development of next generation multimedia solutions for DVD players, consumer electronics and other embedded platforms.
&lt;br&gt;&lt;br&gt;MINIMUM REQUIREMENTS:
&lt;br&gt;- MSEE or equivalent
&lt;br&gt;- 5+ years of experience in developing low-level drivers on multiple operating systems including Linux, VxWorks or QNX.
&lt;br&gt;- Detailed knowledge of at least 2 of the following processor architectures: x86, PowerPC, ARM, SH4.
&lt;br&gt;- 1+ year of experience in optimizing algorithms in one or more processor architectures. Knowledge must includeprocessor pipeline, memory/cache and parallel processing.
&lt;br&gt;- Must be able to work closely with both hardware designers and other driver engineers to develop and debug functional and performance aspects of multimedia subsystems.
&lt;br&gt;- Requires low-level Operating System knowledge, specifically memory/resource management, Scheduling and Process Control, and hardware virtualization.
&lt;br&gt;- Other very useful experience: 2D/3D Graphic Acceleration (GPUs), DirectX VA, Video Codecs…
&lt;br&gt;&lt;br&gt;EOE
&lt;br&gt;&lt;br&gt;NVIDIA® is proud to be an Equal Opportunity Employer
&lt;br&gt;For</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EMBEDDED-SYSTEM-SOFTWARE-LEAD-tp12729727p12729727.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12729709</id>
	<title>SR. EMBEDDED SYSTEM SOFTWARE ENGINEER</title>
	<published>2007-09-16T23:48:45Z</published>
	<updated>2007-09-16T23:48:45Z</updated>
	<author>
		<name>Yuvi123</name>
	</author>
	<content type="html">Please send resume to rkhanna@nvidia.com
&lt;br&gt;&lt;br&gt;SR. EMBEDDED SYSTEM SOFTWARE ENGINEER #918435
&lt;br&gt;&lt;br&gt;RESPONSIBILITIES:
&lt;br&gt;&lt;br&gt;Design and implement low level drivers and software for Windows Embedded CE on a variety of CPU platforms includingx86, SH4, PowerPC, and ARM. Use your experience in processor architecture, embedded operating systems and hardware fundamentals to support development of next generation multimedia solutions for automotive infotainment and arcade/pachinko, consumer electronics and other embedded platforms.
&lt;br&gt;&lt;br&gt;MINIMUM REQUIREMENTS:
&lt;br&gt;- MSEE or equivalent
&lt;br&gt;- 5+ years of experience in developing low-level drivers on multiple operating systems including WinCE, and preferably Linux, VxWorks or QNX.
&lt;br&gt;- Detailed knowledge of at least 2 of the following processor architectures: x86, PowerPC, ARM, SH4.
&lt;br&gt;- 1+ year of experience in optimizing algorithms in one or more processor architectures. Knowledge must include processor pipeline, memory/cache and parallel processing.
&lt;br&gt;- Must be able to work closely with both hardware designers and other driver engineers to develop and debug functional and performance aspects of multimedia subsystems.
&lt;br&gt;- Requires low-level Operating System knowledge, specifically memory/resource management, Scheduling and Process Control, and hardware virtualization.
&lt;br&gt;- Other very useful experience: 2D/3D Graphic Acceleration (GPUs), DirectX VA, Video &amp; Audio Codecs
&lt;br&gt;EOE
&lt;br&gt;**
&lt;br&gt;NVIDIA® is proud to be an Equal Opportunity Employer</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SR.-EMBEDDED-SYSTEM-SOFTWARE-ENGINEER-tp12729709p12729709.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-11323311</id>
	<title>kernel 2.6 for Xscale IXP42x platform</title>
	<published>2007-06-27T06:18:05Z</published>
	<updated>2007-06-27T06:18:05Z</updated>
	<author>
		<name>Queenie</name>
	</author>
	<content type="html">Hi Everybody, 
&lt;br&gt;&lt;br&gt;I would like to load kernel 2.6 on my customised Target board having IXP422. I have u-boot 1.1.6 bootloader. 
&lt;br&gt;&lt;br&gt;For this, I would like to know which kernel version can i decide on? How can i determine which version of 2.6 to go in for? Also do i need any patch? which ones ? and how to add a patch? can someone guide me through? 
&lt;br&gt;&lt;br&gt;I have an Image which was done earlier with a different kernel used for the same board with redboot bootloader? Can i try using the same or will it be checking somewhere for the redboot bootloader? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Which toolchain should i use for building this kernel for X-scale IXP422 big endian architecture ? Is there nay opensource toolchain readymade avaliable or do i have to built one myself? I have never done this before though.. 
&lt;br&gt;&lt;br&gt;For the time being, I have downloaded the kernel 2.6.20 from kernel.org. how do i proceed next? how to get the IXP422 option in the kernel arch? 
&lt;br&gt;&lt;br&gt;Can you guide me through this process 
&lt;br&gt;Pl help! 
&lt;br&gt;&lt;br&gt;Queenie</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/kernel-2.6-for-Xscale-IXP42x-platform-tp11323311p11323311.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-11136006</id>
	<title>Gnash</title>
	<published>2007-06-15T03:35:03Z</published>
	<updated>2007-06-15T03:35:03Z</updated>
	<author>
		<name>prathap</name>
	</author>
	<content type="html">Thanks for your motive to share your technical knowledge.
&lt;br&gt;It will surely help we guys working on embedded linux systems.
&lt;br&gt;&lt;br&gt;Do any one has cross compiled gnash for arm?
&lt;br&gt;I am not able to do this. I need help.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Gnash-tp11136006p11136006.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8292722</id>
	<title>创建这个论坛的目的(The purpose of creating this forum)</title>
	<published>2007-01-11T20:37:23Z</published>
	<updated>2007-01-11T20:37:23Z</updated>
	<author>
		<name>chinesekongfu</name>
	</author>
	<content type="html">我希望能够在这里和embedded linux的开发人员共享一些idea,experience以及我自己在项目开发中写的一些文档.
&lt;br&gt;&lt;br&gt;I found it necessary to share some of my idea as well as some technical document created during my developping work. Hope this can help you guys.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%E5%88%9B%E5%BB%BA%E8%BF%99%E4%B8%AA%E8%AE%BA%E5%9D%9B%E7%9A%84%E7%9B%AE%E7%9A%84%28The-purpose-of-creating-this-forum%29-tp8292722p8292722.html" />
</entry>

</feed>
