<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/openwince/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/openwince/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 14 Jan 2008 14:33:35 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/openwince/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Compiling on windows XP gives error</title><link>https://sourceforge.net/p/openwince/bugs/43/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I was trying to compile on windows XP using Cygwin. It complains about libreadline.h, history.h. I tried to check these files, they are not available.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ajit</dc:creator><pubDate>Mon, 14 Jan 2008 14:33:35 -0000</pubDate><guid>https://sourceforge.net6aab97abd50c5d25ea83e9d4ece48964712a705c</guid></item><item><title>Compile broblem in OpenSuse 10.2</title><link>https://sourceforge.net/p/openwince/bugs/42/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;if gcc -DHAVE_CONFIG_H -I. -I. -I.   -I/usr/include/openwince -I/usr/include/openwince/device -I/usr/include/openwince/arm -I./../include  -g -O2 -Wall -MT cmd_detectflash.o -MD -MP -MF ".deps/cmd_detectflash.Tpo" \
-c -o cmd_detectflash.o `test -f 'cmd/cmd_detectflash.c' || echo './'`cmd/cmd_detectflash.c; \
then mv -f ".deps/cmd_detectflash.Tpo" ".deps/cmd_detectflash.Po"; \
else rm -f ".deps/cmd_detectflash.Tpo"; exit 1; \
fi&lt;br /&gt;
cmd/cmd_detectflash.c: In function ‘cmd_detectflash_run’:&lt;br /&gt;
cmd/cmd_detectflash.c:43: error: too few arguments to function ‘detectflash’&lt;br /&gt;
make[4]: *** [cmd_detectflash.o] Error 1&lt;/p&gt;
&lt;p&gt;versions:&lt;br /&gt;
Linux linux-xxxx 2.6.18.8-0.5-default #1 SMP Fri Jun 22 12:17:53 UTC 2007 i686 athlon i386 GNU/Linux&lt;br /&gt;
gcc (GCC) 4.1.2 20061115 (prerelease) (SUSE Linux)&lt;br /&gt;
GNU Make 3.81&lt;/p&gt;
&lt;p&gt;jtag 0.5.1 (today)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mika Firsoff</dc:creator><pubDate>Fri, 12 Oct 2007 09:47:26 -0000</pubDate><guid>https://sourceforge.net7f24ee6f7bba4da7e5afe20ea51d3c179b59f537</guid></item><item><title>ARM cross compile failure</title><link>https://sourceforge.net/p/openwince/bugs/41/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I'm trying to cross compile the jtag tools utility using buildboot for an ARM processor. The build fails in the ppdev.c file. The stropts.h header is not found and there is an error message about ioctl not being defined.&lt;/p&gt;
&lt;p&gt;I was able to get the package to compile by commenting out #include &amp;lt;stropts.h&amp;gt; and #include &amp;lt;linux/ioctl.h&amp;gt; then adding #include &amp;lt;sys/ioctl.h&amp;gt;&lt;/p&gt;
&lt;p&gt;There are probably a lot of other issues I need to look at/fix to get the utility to work correctly in the ARM, mostly with the cable driver. Has anyone tried this?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">H Hartley Sweeten</dc:creator><pubDate>Sat, 30 Jun 2007 00:33:41 -0000</pubDate><guid>https://sourceforge.net83be5543e924a199cf2fcff634188eb5c788fdda</guid></item><item><title>Cable comand -can`t select JTAG</title><link>https://sourceforge.net/p/openwince/bugs/40/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I download Cygwin and JTAG tools 0.5.1 ver &lt;br /&gt;
I succesfull comile and run this tools under Cygwin&lt;/p&gt;
&lt;p&gt;Next step is runing &lt;/p&gt;
&lt;p&gt;jtag&amp;gt; cable parallel 0x378 ByteBlaster&lt;br /&gt;
Unknown connection type: parallel&lt;/p&gt;
&lt;p&gt;I got very strange answer &lt;/p&gt;
&lt;p&gt;After this i try to find this place in sources &lt;br /&gt;
file .\src\cmd\cable.c &lt;br /&gt;
....&lt;br /&gt;
48 string&lt;br /&gt;
/* search connection type driver */&lt;br /&gt;
for (i = 0; parport_drivers[i]; i++)&lt;br /&gt;
if (strcmp( params[1], parport_drivers[i]-&amp;gt;type ) == 0)&lt;br /&gt;
break;&lt;br /&gt;
if (!parport_drivers[i]) {&lt;br /&gt;
printf( _("Unknown connection type: %s\n"), params[1] );&lt;br /&gt;
return 1;&lt;br /&gt;
}&lt;br /&gt;
....&lt;/p&gt;
&lt;p&gt;And after debuging i find that parport_drivers[i] always zero ! &lt;br /&gt;
So it's no matter what i write in command line &lt;/p&gt;
&lt;p&gt;On Next step i  try to understand why parport_drivers[i] is zero &lt;/p&gt;
&lt;p&gt;and find in file &lt;br /&gt;
\src\tap\parport.c &lt;/p&gt;
&lt;p&gt;#if defined(HAVE_IOPERM) || defined(HAVE_I386_SET_IOPERM)&lt;br /&gt;
extern parport_driver_t direct_parport_driver;&lt;br /&gt;
#endif /* defined(HAVE_IOPERM) || defined(HAVE_I386_SET_IOPERM) */&lt;/p&gt;
&lt;p&gt;and after debuging i guess than &lt;br /&gt;
constants HAVE_I386_SET_IOPERM and HAVE_IOPERM are not definded &lt;/p&gt;
&lt;p&gt;I try to defind they manualy in and project after that trow errors in compilation. &lt;/p&gt;
&lt;p&gt;So i make conclusion that something wrong with Cygwin. &lt;br /&gt;
May be some package is not installed - i don't know what to think. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arexol</dc:creator><pubDate>Fri, 01 Dec 2006 11:00:20 -0000</pubDate><guid>https://sourceforge.neteb773574c1b4a0ed337cbee30f7ca7cd64d2bac7</guid></item><item><title>Install problem for hwbench using wine</title><link>https://sourceforge.net/p/openwince/bugs/39/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have small problem with installing include package&lt;br /&gt;
for hwbench on linux. It is caused by line 59 in&lt;br /&gt;
configure.ac - direct call of cygpath.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chemik</dc:creator><pubDate>Fri, 18 Aug 2006 12:29:57 -0000</pubDate><guid>https://sourceforge.netba82f29e71747b268e68900ae7900dad6b796ad1</guid></item><item><title>Latest version of jtag do not compile </title><link>https://sourceforge.net/p/openwince/bugs/38/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The Latest version of jtag do not compile with the&lt;br /&gt;
latest version of include.&lt;br /&gt;
It compiles with the 0.3.2, because of the extra&lt;br /&gt;
detectflash argument introduced with the 0.4 version.&lt;br /&gt;
You should at least specify the required version on the&lt;br /&gt;
README and/or in the project page.&lt;/p&gt;
&lt;p&gt;regards,&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">happycactus</dc:creator><pubDate>Tue, 21 Feb 2006 15:44:01 -0000</pubDate><guid>https://sourceforge.net16b5484e6c43ba028ec292744917555e30c36f0c</guid></item><item><title>flex version</title><link>https://sourceforge.net/p/openwince/bugs/37/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;the version 0.6.1 not compile with a version of flex&lt;br /&gt;
2.5.4x. but function with 2.5.31. the problem is the&lt;br /&gt;
line %option bison-locations in file src/svf/svf_flex.l&lt;/p&gt;
&lt;p&gt;in the version 2.5.4 there isn't the support for&lt;br /&gt;
bison-locations options.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michele Da Rold</dc:creator><pubDate>Mon, 17 Oct 2005 10:35:52 -0000</pubDate><guid>https://sourceforge.net895185fa9d83eb156ecb71d443d8c3797f66e2b2</guid></item><item><title>"svf_flex.l", line 27: unrecognized %option: bison-locations</title><link>https://sourceforge.net/p/openwince/bugs/36/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When i do configure all ok, second I try to make ad the&lt;br /&gt;
error is:&lt;br /&gt;
if gcc -DHAVE_CONFIG_H -I. -I. -I../..&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/arm&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/brux&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/device&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/h8&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/sh&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/std&lt;br /&gt;
-I/home/marco/jtag-0.6.1/include/stdint -I../..&lt;br /&gt;
-I../../include  -g -O2 -Wall -MT svf_bison.o -MD -MP&lt;br /&gt;
-MF ".deps/svf_bison.Tpo" -c -o svf_bison.o svf_bison.c; \
then mv -f ".deps/svf_bison.Tpo" ".deps/svf_bison.Po";&lt;br /&gt;
else rm -f ".deps/svf_bison.Tpo"; exit 1; fi&lt;br /&gt;
/usr/share/bison/bison.simple: In function `yyparse':&lt;br /&gt;
/usr/share/bison/bison.simple:573: warning: implicit&lt;br /&gt;
declaration of function `yylex'&lt;br /&gt;
svf_bison.y:190: warning: passing arg 3 of `svf_sxr'&lt;br /&gt;
from incompatible pointer type&lt;br /&gt;
svf_bison.y:205: warning: passing arg 3 of `svf_sxr'&lt;br /&gt;
from incompatible pointer type&lt;br /&gt;
flex   svf_flex.l&lt;br /&gt;
"svf_flex.l", line 27: unrecognized %option:&lt;br /&gt;
bison-locations&lt;br /&gt;
make[2]: *** [svf_flex.c] Error 1&lt;br /&gt;
make[2]: Leaving directory `/home/marco/jtag-0.6.1/src/svf'&lt;br /&gt;
make[1]: *** [check-recursive] Error 1&lt;br /&gt;
make[1]: Leaving directory `/home/marco/jtag-0.6.1/src'&lt;br /&gt;
make: *** [check-recursive] Error 1&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michele Da Rold</dc:creator><pubDate>Thu, 13 Oct 2005 10:02:19 -0000</pubDate><guid>https://sourceforge.net321b5a8548e6298fd9df6af440fbe0488d7513c8</guid></item><item><title>jtag / can't build </title><link>https://sourceforge.net/p/openwince/bugs/35/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I can't build a jtag-0.5.1 .&lt;/p&gt;
&lt;p&gt;The openwince "includes" packge is installed.&lt;/p&gt;
&lt;p&gt;Seems, it conflicts with the new version of the "includes"&lt;/p&gt;
&lt;p&gt;"Make" fails with the following error:&lt;br /&gt;
...&lt;br /&gt;
...&lt;br /&gt;
if gcc -DHAVE_CONFIG_H -I. -I. -I.   -&lt;br /&gt;
I/usr/local/include/openwince -&lt;br /&gt;
I/usr/local/include/openwince/device -&lt;br /&gt;
I/usr/local/include/openwince/arm -I./../include  -g -O2 -&lt;br /&gt;
Wall -MT cmd_detectflash.o -MD -MP -&lt;br /&gt;
MF ".deps/cmd_detectflash.Tpo" \
-c -o cmd_detectflash.o `test -&lt;br /&gt;
f 'cmd/cmd_detectflash.c' || &lt;br /&gt;
echo './'`cmd/cmd_detectflash.c; \
then mv -&lt;br /&gt;
f ".deps/cmd_detectflash.Tpo" ".deps/cmd_detectflash.P&lt;br /&gt;
o"; \
else rm -f ".deps/cmd_detectflash.Tpo"; exit 1; \
fi&lt;br /&gt;
cmd/cmd_detectflash.c: In function &lt;br /&gt;
`cmd_detectflash_run':&lt;br /&gt;
cmd/cmd_detectflash.c:43: error: too few arguments to &lt;br /&gt;
function `detectflash'&lt;br /&gt;
make[4]: *** [cmd_detectflash.o] Error 1&lt;br /&gt;
make[4]: Leaving directory `/home/alec/mips/jtag-&lt;br /&gt;
0.5.1/libbrux'&lt;br /&gt;
make[3]: *** [all-recursive] Error 1&lt;br /&gt;
...&lt;br /&gt;
...&lt;/p&gt;
&lt;p&gt;New version of the&lt;/p&gt;
&lt;p&gt;/usr/local/include/openwince/brux/flash.h&lt;/p&gt;
&lt;p&gt;defines&lt;/p&gt;
&lt;p&gt;void detectflash( bus_t *bus, uint32_t adr );&lt;/p&gt;
&lt;p&gt;but JTAG uses&lt;/p&gt;
&lt;p&gt;void detectflash( bus_t *bus);&lt;/p&gt;
&lt;p&gt;Could you correct this ?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">alec_v</dc:creator><pubDate>Thu, 08 Sep 2005 08:38:53 -0000</pubDate><guid>https://sourceforge.net0f688c93d1b90acd2b822b99f31be910c6e98f4a</guid></item><item><title>jtag descriptor for Lattice LC4032V-TQFP100</title><link>https://sourceforge.net/p/openwince/bugs/34/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The attached adds support for JTAG chains containing&lt;br /&gt;
the Lattice LC4128C CPLD. It is sufficient to allow&lt;br /&gt;
access to the PXA255 which shares the same chain. I'm&lt;br /&gt;
not sure the JTAG tool supports CPLDs, or how I would&lt;br /&gt;
drive it if it did, so I can't actually confirm that&lt;br /&gt;
anything other than BYPASS works.&lt;/p&gt;
&lt;p&gt;The jtag file was created from the bsm file downloaded&lt;br /&gt;
from Lattice using bsdl2jtag (I added the signal&lt;br /&gt;
numbers by hand since bsdl2jtag didn't do it). I&lt;br /&gt;
duplicated the bsm copyright under the GPL statement, I&lt;br /&gt;
don't know what the right thing to do is, feel free to&lt;br /&gt;
adjust it. Consider my (tiny) contribution to be public&lt;br /&gt;
domain.&lt;/p&gt;
&lt;p&gt;Ian.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ian Campbell</dc:creator><pubDate>Wed, 19 Jan 2005 14:00:04 -0000</pubDate><guid>https://sourceforge.nete4fd03008d4a2de048012beef2020ab90d38b93d</guid></item></channel></rss>