IRC log for #elinux on 20100304

00:07.23*** join/#elinux MonMotha (~monmotha@cpe-65-29-71-209.indy.res.rr.com)
00:07.43*** join/#elinux MonMotha (~monmotha@cpe-65-29-71-209.indy.res.rr.com)
00:20.23*** join/#elinux krushia (~krushia@h69-131-86-88.cntcnh.dsl.dynamic.tds.net)
00:21.26*** join/#elinux thraxisp (~thraxisp@24.139.16.154)
00:32.50*** join/#elinux pb__ (~pb@88-108-113-12.dynamic.dsl.as9105.com)
00:58.53*** join/#elinux gandhijee (akp@host-66-202-34-165.spr.choiceone.net)
01:36.13*** join/#elinux ibot (ibot@rikers.org)
01:36.13*** topic/#elinux is Embedded Linux || http://eLinux.org/ || cross compile, uClibc, busybox, handhelds, post-sale linux installs ;-), etc.
01:36.13*** mode/#elinux [+o ibot] by ChanServ
02:03.39*** join/#elinux MonMotha (~monmotha@cpe-65-29-71-209.indy.res.rr.com)
03:04.25*** join/#elinux sjhill_ (~sjhill@home.bethel-hill.org)
03:05.00*** join/#elinux sjhill (~sjhill@home.bethel-hill.org)
03:27.40*** join/#elinux MonMotha (~monmotha@cpe-65-29-71-209.indy.res.rr.com)
03:29.54*** join/#elinux cokebottles (~doug@76.178.170.220)
03:55.50*** join/#elinux MonMotha (~monmotha@cpe-65-29-71-209.indy.res.rr.com)
05:08.50*** join/#elinux file (~file@asterisk/developer-and-muffin-lover/file)
05:08.54*** mode/#elinux [+v file] by ChanServ
05:33.19*** join/#elinux roxfan (dunno@78.217-240-81.adsl-dyn.isp.belgacom.be)
05:58.48*** join/#elinux linac (~lin@122.90.101.159)
06:16.31*** join/#elinux rhett (~rhett@user-0ccsi62.cable.mindspring.com)
06:16.37rhetthey
06:17.03rhettI have an elinux device that I want to copy files from securely to a server
06:17.05rhettany hints?
06:49.26*** join/#elinux lyakh (~lyakh@p57BD1E78.dip0.t-ipconnect.de)
06:56.05*** join/#elinux roxfan (dunno@78.217-240-81.adsl-dyn.isp.belgacom.be)
07:42.54*** join/#elinux kaz00 (~kaz00@c-24-130-249-162.hsd1.ca.comcast.net)
07:56.37*** join/#elinux Roland (~roland@88-196-155-145-wifi.est.estpak.ee)
08:22.07*** join/#elinux hw (~hw@p578b3905.dip0.t-ipconnect.de)
08:29.51*** join/#elinux hw (~hw@p578b3905.dip0.t-ipconnect.de)
10:05.51*** join/#elinux roxfan (dunno@78.217-240-81.adsl-dyn.isp.belgacom.be)
10:12.18*** join/#elinux roxfan (~dunno@78.217-240-81.adsl-dyn.isp.belgacom.be)
11:19.20*** join/#elinux pirho (debian-tor@gateway/tor-sasl/pirho)
12:01.43*** join/#elinux gustavoz (~gustavoz@200.82.38.195)
12:36.41*** join/#elinux vadmeste (~hannken@41.224.11.186)
12:38.23*** join/#elinux Termana (~bradley@123-3-172-153.static.dsl.dodo.com.au)
12:44.34vadmesteHey... I want to cross-compile libgd for my embedded device... I mounted my rootfs.. extracted libgd and ran ./configure --host=armv5tel-softfloat-linux-gnueabi --prefix=/path/to/rootfs, but it cant detect the installed jpeg lib.. (I assume it exists because I can find libjpeg.so.62.0.0 rootfs/usr/lib).. I am missing something ?
12:45.05vadmeste(in rootfs/usr/lib) *
12:46.20Termanavadmeste - I think you would need to have it in your host root file system, rather than your devices rootfs.
12:47.20vadmesteare you sure ?
12:47.47TermanaShould I be? :P
12:48.23vadmesteof course :p
12:48.35TermanaI did prefix the sentence with "I think", but yes, I'm pretty sure. Or you could just do a symlink, though it would just be easier to copy it and delete it later
12:51.00vadmesteemm.. notice that my host is x86.. and my embedded device is arm
12:51.37Termanathat should be fine.
12:52.12TermanaAs long as you don't overwrite one that is already in your host /usr/lib directory, everything will be fine
12:54.02TermanaSo, make sure that file isn't already in your host /usr/lib directory before you do anything :P
12:55.21vadmestethat's strange.. do you think that libjpeg is not installed in my host ?
12:55.30vadmestei'll paste my configure oupout
12:56.27vadmestehttp://paste.pocoo.org/show/185479/
12:59.15*** join/#elinux sjhill (~sjhill@home.bethel-hill.org)
13:03.31vadmesteTermana, what do you say is tooo strange for me... it don't understand many things... but I think that libgd in runtime will be linked dynamically against libjpeg which should contains ARM instructions... am i wrong ?
13:04.57Termanavadmeste - but during compile time you need to have it available for the compiler. I'm just trying to remember weather shared libraries are architecture independent or not.
13:05.59vadmesteah I understand you now.. you are suggesting to do it with the dirty way.. right ?
13:06.21TermanaIf they are, you just need to make sure you have the libjpeg so in your host /usr/lib - if their not, you may already have one in there and would need to probably put the ARM lib in the gd directory
13:08.09TermanaThe second way is probably the best way to go anyway. Grab the libjpeg shared library and put it in the directory that your compiling libgd from
13:08.38vadmesteI think it checks for headers
13:08.41vadmeste:)
13:13.25Termanatry this command:
13:13.25Termana./configure --with-jpeg=path/to/rootfs/usr/local --with-png=path/to/rootfs/usr/local
13:13.27Termana--with-zlib-dir=path/to/rootfs/usr/local --host=armv5tel-softfloat-linux-gnueabi --prefix=/path/to/rootfs
13:13.44TermanaThe whole thing :P, it didn't copy and paste right
13:17.19Termanavadmeste: Still there?
13:17.37vadmesteyes Termana sorry
13:21.23vadmestethe same problem => Support for JPEG library:         no
13:21.47vadmestenotice that I deleted local from path because I don't have it
13:21.57*** join/#elinux flavioribeiro (~flavio@187.64.42.101)
13:26.14TermanaYour sure you've got libjpeg ON the device rootfs?
13:35.47vadmesteI am not sure.. but I cant find this file /path/to/rootfs/usr/lib/libjpeg.so.62.0.0.. and my embedded device (which has many X applications can browse jpeg files)...
13:40.25vadmestesoryyyyyyy
13:40.31vadmesteI mean I can find
13:40.38vadmestelibjpeg.so.62.0.0 file
13:41.25Termanaso it is there?
13:46.00vadmesteyes
14:08.20*** join/#elinux GPSFan (~kenm@64.92.145.112)
15:04.19vadmestetired with it's embedded device...
15:04.50vadmesteI got another error now when compiling libgd => http://paste.pocoo.org/show/185543/
15:05.09vadmesteany suggestion ?
15:24.59*** join/#elinux pirho (debian-tor@gateway/tor-sasl/pirho)
15:36.57*** join/#elinux thraxisp (~thraxisp@dsl-67-55-9-226.acanac.net)
15:38.44*** join/#elinux krushia (~krushia@h69-131-86-88.cntcnh.dsl.dynamic.tds.net)
15:49.50BET-froggervadmeste: have you though about using something like, openembedded, ptxdist or debian
15:50.59vadmesteBET-frogger, I don't like automatic tool.. I tried to build my program (gnuplot) with openembedded but it failed..
15:51.10BET-froggervadmeste: as long as you have "-I/usr" in your am compiler call there's something completely wrong
15:51.21vadmesteand I have a ready rootfs.. I just need to install gnuplot
15:51.34BET-froggervadmeste: try  --without-fontconfig --without-freetype
15:51.47vadmesteokey
15:52.13BET-froggeror complile fontconfig and freetype for your arm
15:52.35BET-froggerand use --with-....=/path/to/rootfs/usr
15:53.20BET-froggerregading automated tools, have fun doing the same thing in say 6 month :P
15:55.24vadmesteyou are stressing me
15:55.57vadmesteI am in work now :)
15:57.55BET-frogger:)
16:23.35*** join/#elinux tzanger (~tzanger@gromit.mixdown.ca)
16:24.11tzangergood afternoon... is there a good "light" ARM7 emulator? I'm ust starting my web searching but thought you guys might have recommendations.  Specifically emulating LPC2103 and peripherals
16:31.00Kmarccheck this http://www.skyeye.org/index.shtml
16:31.16*** join/#elinux linac (~lin@122.90.101.159)
16:31.34Kmarcnewer use it, but it looks interesting
16:32.32tzangerskyeye doesn't support LPC2103, 2200 series though (unfinished) might be enough
16:32.47tzangerI'm just trying to determine why the hell reading the UART receiver register causes an abort
16:33.08tzangerI might be able to get by with a straight arm7t emulator and saying RAM is there
16:55.09*** join/#elinux flavioribeiro (~flavio@187.64.42.101)
17:06.30*** join/#elinux Roland (~roland@88-196-154-139-wifi.est.estpak.ee)
17:52.06tzangernope. skyeye is close, but too buggy
18:12.18tzangera couple of patches later from the list and at least the I/O isn't crashing it anymore
18:12.26tzangerbut I need to add PLL emulation
18:33.39*** join/#elinux thraxisp (~thraxisp@century.precidia.com)
18:56.10*** join/#elinux blindvt (~bf@84.119.103.202)
18:57.31*** join/#elinux bzzbzz (~franco@modemcable240.34-83-70.mc.videotron.ca)
21:34.39*** join/#elinux Roland (~roland@88-196-11-59-wifi.kjj.estpak.ee)
22:31.09*** join/#elinux GPSFan (~kenm@64.92.145.112)
22:46.38*** join/#elinux pirho (debian-tor@gateway/tor-sasl/pirho)
22:57.59*** join/#elinux thraxisp (~thraxisp@dsl-67-55-9-225.acanac.net)
23:55.07*** join/#elinux dieter|work (~dieter@dslb-088-065-207-125.pools.arcor-ip.net)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.