<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.misc.nslu2.linux">
    <title>gmane.comp.misc.nslu2.linux</title>
    <link>http://blog.gmane.org/gmane.comp.misc.nslu2.linux</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25195"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25194"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25193"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25189"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25188"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25185"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25181"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25179"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25174"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25165"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25162"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25158"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25157"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25156"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25155"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25153"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25151"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25148"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25147"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25144"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25195">
    <title>CPAN fix for perl for optware</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25195</link>
    <description>&lt;pre&gt;I have optware on my router with 32mb and I got perl but the module I wanted wasn't available via ipkg so I went to use CPAN to find it wouldn't work...
Even if I did configure it correctly (i'm 99% sure i did since i had expert help) it would have taken days to do anything as using swap made it slooooooow) I started off with this site http://www.nslu2-linux.org/wiki/HowTo/ConfigureCPAN and that didn't cut it.

I moved over to using cpanm - https://github.com/miyagawa/cpanminus
but that gave an error so i did this

https://github.com/shadowcat-mst/cpanminus/commit/9eba7dd0af9e63a4cadde8b0f5483a43a5e63deb **** credit goes to wtf911(myself) and mst*****

With that cpanm works good and you just need the proper ipkgs prior to using it...

i can't say what if all of these you need:

binutils
expat
glib
grep
gzip
less
libc6-unslung
libdb
libgcc
libxml2
lynx
man
ncftp
ncursesw
openssh
openssl-dev
readline
sqlite
tz
unslung-devel
unslung-feeds
update-modules
which
zlib

but on top of those you want:

tar
wget
make
i&lt;/pre&gt;</description>
    <dc:creator>markduncan72</dc:creator>
    <dc:date>2012-05-17T17:16:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25194">
    <title>Catching SIGSEGV</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25194</link>
    <description>&lt;pre&gt;I am trying to trap a SIGSEGV (also SIGBUS, SIGILL and SIGFPE, but I have not even managed to generate those yet :-( ).

I can easily get the program to produce a message "Segmentation Violation" on stderr, but noway can I catch it before getting that message.

I have written
        sigemptyset(&amp;amp;set);
        sigaddset(&amp;amp;set, SIGUSR1);
        sigaddset(&amp;amp;set, SIGUSR2);
        sigaddset(&amp;amp;set, SIGTERM);
        sigaddset(&amp;amp;set, SIGINT);
        sigaddset(&amp;amp;set, SIGSEGV);
        sigaddset(&amp;amp;set, SIGBUS);
        sigaddset(&amp;amp;set, SIGILL);
        sigaddset(&amp;amp;set, SIGFPE);
        sigaddset(&amp;amp;set, SIGSYS); 
and I have created a pthread which contains
                sigwait(&amp;amp;set, &amp;amp;signal);
printf("Display signal %d\n", signal);
                switch (signal) {
                case SIGSEGV:
                case SIGBUS:
                case SIGILL:
                case SIGFPE:
                case SIGSYS:
                        fatal("Heat failed: %s", strerror(errno));
                case SIGTERM:
                c&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-17T16:59:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25193">
    <title>I2C and kernel mutexes</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25193</link>
    <description>&lt;pre&gt;Is the I2C implementation in Slugos5.3 based upon the i2c-dev.c and i2c-core.c and i2c-algo-bit.c Linux drivers?

I use the I2C_RDWR ioctl call to send a bunch of messages to the i2c bus. According to the source code of i2c_transfer in i2c-dev.c ( am looking at linux-2.6.21.7, but I don't suppose more recent linuces are much different), a kernel mutex is set whilst the whole bunch is sent, and thus the bunch can be regarded as an atomic action.

But what I am seeing does not support this view. I have a variety of devices on my i2c bus, including an ADC and an EEPROM. If I run two programs, one of which is polling the ADC vigorously, and one is reading lots of stuff from the EEPROM, then from time to time the ADC gets confused and returns results from the wrong channel (or which it has four). So it would seem that a bunch of messages for the EEPROM is getting co-mingled with a bunch of messages for the ADC, and according to my understanding of the kernel code, that should not happen.

Comments anyone?



----&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-17T10:49:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25189">
    <title>MySQL 4.1.22 build fails</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25189</link>
    <description>&lt;pre&gt;Hi All,

MySQL 4.1.22 build fails. Can someone have a look at this please?
Original mysql.mk was not modified.

Thank you in advance,
Sergey

source='my_new.cc' object='my_new.o' libtool=no \
DEPDIR=.deps depmode=none /bin/sh ../depcomp \
g++ -DDEFAULT_BASEDIR=\"/opt\" -DDATADIR="\"/opt/var\"" -DDEFAULT_CHARSET_HOME="\"/opt\"" -DSHAREDIR="\"/opt/share/mysql\"" -DHAVE_CONFIG_H -I. -I. -I.. -I../zlib -I../include -I../include -I.    -O -DDBUG_OFF    -c -o my_new.o my_new.cc
../depcomp: line 512: exec: g++: not found
make[4]: *** [my_new.o] Error 127
make[4]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql/mysys'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql'
make[1]: *** [/tmp/_NEW_optware/optware/cs05q1armel/host/builds/mysql/.built] Error 2
make[1]: Leaving directory `/tmp/_NEW_optware/optware/cs05q1armel'
make: *** [/tmp/_NEW_optwar&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-16T10:19:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25188">
    <title>LogitechMediaServer_v7.7.2 package request</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25188</link>
    <description>&lt;pre&gt;Hi ALL!

Can someone would be so kind to prepare LogitechMediaServer_v7.7.2 for optware please? However, it is a big piece of job :)

http://downloads.slimdevices.com/LogitechMediaServer_v7.7.2/
http://svn.slimdevices.com/repos/slim/7.7/trunk/vendor/CPAN/

LogitechMediaServer_v7.7.2 supports more players and file formats in comparison with squeezecenter - 7.3.3 supported by optware.

Thank you very much in advance.
Sergey

P.S. I've tried to compile all necessary packages for LogitechMediaServer_v7.7.2. Unfortunately, stuck with libmediascan-0.1:

1] ./slimserver.pl --d_startup
Can't locate loadable object for module Media::Scan in &amp;lt; at &amp;gt;INC


2] (ffmpeg, libexif, libjpeg, libpng, giflib, libbdb are already in stage)


libtool: compile:  /tmp/optware/cs05q1armel/toolchain/arm-none-linux-gnueabi/gcc-2005q1-glibc-2.3.4/bin/arm-none-linux-gnueabi-gcc -DHAVE_CONFIG_H -I. -I.. -O2 -pipe -I/tmp/optware/cs05q1armel/staging/opt/include -Wall -I../include -I/tmp/optware/cs05q1armel/staging/opt/include -g -O2 -MT libmedias&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-14T15:26:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25185">
    <title>perl-dbd-sqlite make file update request</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25185</link>
    <description>&lt;pre&gt;Hi All,

Please can someone update the following make file?

perl-dbd-sqlite to version 1.35


Unable to build the package: perl-dbd-sqlite due the following problem:


DBI 1.57 is required to configure this module; please install it or upgrade your CPAN/CPANPLUS shell.


However, perl-dbi v.1.620 is in stage

Thank you,
Sergey



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-10T15:52:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25181">
    <title>ipkg update reports "file too short"</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25181</link>
    <description>&lt;pre&gt;Hi all,

I have a GoFlex Home, which is based upon the OpenStora system, which uses ipkg
for package management:
http://www.openstora.com/wiki/index.php?title=Getting_Started#Preparing_to_insta\
ll_software_and_checking_free_space

So I followed the instructions for moving /opt (I moved it to /mnt/eSata/opt)
and have been installing packages.

I cancelled an install process of ipkg and now it reports:

bash-3.2# /opt/bin/ipkg update
/opt/bin/ipkg: error while loading shared libraries: /opt/lib/libipkg.so.0: file
too short

The only way to get around this seems to be a reinstall of ipkg. That's
annoying...

Help?

- Phil


PS here is the results of running 'df':

bash-3.2# df -h
Filesystem Size Used Avail Use% Mounted on
rootfs 212M 196M 16M 93% /
ubi0:rootfs 212M 196M 16M 93% /
none 62M 32K 62M 1% /dev
nodev 62M 36M 26M 59% /var/log
nodev 62M 480K 61M 1% /mnt/tmpfs
nodev 62M 24K 62M 1% /var/lib/php/session
nodev 62M 480K 61M 1% /tmp
nodev 62M 480K 61M 1% /var/run
nodev 62M 480K 61M 1% /var/cache
nodev 62M 48&lt;/pre&gt;</description>
    <dc:creator>theschles</dc:creator>
    <dc:date>2012-04-30T18:52:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25179">
    <title>apache - openssl installation</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25179</link>
    <description>&lt;pre&gt;an error occures during the apache installation on my slug (unslung 6.8)
apache needs  openssl for the install, but the link will be no more present

please could you help me ?



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>floh0033</dc:creator>
    <dc:date>2012-04-29T19:03:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25174">
    <title>unslung and UTF-8 character encoding</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25174</link>
    <description>&lt;pre&gt;I am trying to use svn and handle Greek characters within files and folders. The only way to do it i must install utf-8 locale to my unslung  V2.3R63-uNSLUng-6.10-beta. "locale" is missing and I am really stuck here. any Ideas ??? 

Regards
Iraklis




------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>Iraklis</dc:creator>
    <dc:date>2012-04-17T11:51:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25165">
    <title>/opt/etc/init.d/S80nginx: /opt/etc/init.d/S80nginx: 46: /opt/sbin/ngin not found</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25165</link>
    <description>&lt;pre&gt;Hi folks,

I am trying to run nginx 1.0.14-1 on Kamikaze-7.09 (no other Version
correctly rebooted) on my NSLU2. Anything looks fine nginx was installed
under /opt/sbin the start-script is /opt/etc/init.d/S80nginx my
nginx.conf is at /opt/etc/nginx - so far so good.

But when I try to start nginx like this: /opt/etc/init.d/S80nginx start
I get: "/opt/etc/init.d/S80nginx: /opt/etc/init.d/S80nginx: 46:
/opt/sbin/nginx: not found".
Using Google I also found this: /opt/sbin/nginx what openwrt responses
with not found also.

I tried to fix it by changing the PATH in S80nginx to PATH=/opt/sbin
without success.
Now I feel a bit like not to see the wood for the trees, because the
same error I have with lighttpd even though /sbin/nginx respectively
/sbin/lighttpd definitely exist.

Could you give me a hand to fix this problem?

Thanks a lot in Advance

hcx
&lt;/pre&gt;</description>
    <dc:creator>hcx78</dc:creator>
    <dc:date>2012-04-04T11:15:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25162">
    <title>I2C bus problem</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25162</link>
    <description>&lt;pre&gt;I have a NSLU2 thst is being used to control a heating system. I have brought out the i2c bus (the one that drives the clock chip) just like the wiki pages say, and amongst the various devices on that bus there are some Texas PCF8575 I/O Expander chips, for listening to push buttons, lighting leds and, in particular, for operating relays that will turn boilers off and on.

Now the doco for the PCF8575 quite definitely states that upon power-on (specifically before the power supply has risen to 1.2V) the chip resets itself so that all the outputs are High (i.e. +ve, provided you provide a suitable pullup-resistor). And I have arranged one of those outputs so that when it is high it inhibits all those relays, so no boilers come on until the system has booted and the control program has started. The doco says clearly that after reseting these outputs to high they remain in that state until the i2c bus dictates otherwise.

Nevertheless, the relays are coming on as soon as power is plugged in, before the slug eve&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-04-03T22:15:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25158">
    <title>Looking for replacement AC adaptor</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25158</link>
    <description>&lt;pre&gt;The AC adaptor for one of my Slugs has failed. By swapping adaptors, I know that the Slug itself is still good. 

If you have a spare that you will not be using or want to sell, please contact me. 



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>dystopianrebel</dc:creator>
    <dc:date>2012-03-28T12:09:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25157">
    <title>gconv-modules package problem</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25157</link>
    <description>&lt;pre&gt;lftp :~&amp;gt; set ftp:charset gbk
gbk: this encoding is not supported.

the gconv-modules package is installed, though /opt/lib/gconv doesn't even exists.

the file it downloaded from the ddwrt repos:
http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/gconv-modules_2.2.5-7_mipsel.ipk
it's only 679 bytes

And in the nslu2 repos:
http://ipkg.nslu2-linux.org/feeds/optware/nslu2/cross/stable/gconv-modules_2.2.5-7_armeb.ipk
it's 1.6MB

I guess the ipk file in the ddwrt repos is a faulty build? I tried to check the auto build log but found nothing related to gconv-modules, and I know very little about cross compile things, hope somebody could check it.

And I hope this is the right place to report this, if not, I hope I didn't disturb anybody. and forgive me for my bad English.



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>zforzelda</dc:creator>
    <dc:date>2012-03-25T17:44:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25156">
    <title>Newer version of SVN</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25156</link>
    <description>&lt;pre&gt;I would like a newer version of the SVN package, especially for optware/cs05q3armel

I tried to compile that latest one myself, but failed.

Hoping for help.



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>Stefan</dc:creator>
    <dc:date>2012-03-23T22:35:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25155">
    <title>nmap-5.35DC1 from cs08q1armel/cross/stable misses lua dependency</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25155</link>
    <description>&lt;pre&gt;Hello,

$ ldd `which nmap`
libpcre.so.1 =&amp;gt; /opt/lib/libpcre.so.1 (0x40025000)
libpcap.so.1 =&amp;gt; /opt/lib/libpcap.so.1 (0x4004e000)
libssl.so.0.9.8 =&amp;gt; /opt/lib/libssl.so.0.9.8 (0x40083000)
libcrypto.so.0.9.8 =&amp;gt; /opt/lib/libcrypto.so.0.9.8 (0x400cc000)
liblua.so =&amp;gt; not found
[]

$ cat /opt/lib/ipkg/info/nmap.control
Package: nmap
Architecture: arm
Priority: optional
Section: net
Version: 5.35DC1-2
Maintainer: NSLU2 Linux &amp;lt;nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Source: http://download.insecure.org/nmap/dist/nmap-5.35DC1.tar.bz2
Description: Nmap is a feature-rich portscanner
Depends: libpcap, openssl, pcre, libstdc++
Suggests: 
Conflicts: 


&lt;/pre&gt;</description>
    <dc:creator>Paul Sokolovsky</dc:creator>
    <dc:date>2012-03-23T11:44:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25153">
    <title>Unable to build enca-1.13</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25153</link>
    <description>&lt;pre&gt;Hi All,

Can someone help to solve the following issue please?
I get an error when cross compiling enca-1.13 for ARM processor:

checking for /dev/random... configure: error: cannot check for file
existence when cross compiling
make: *** [/tmp/optware/cs05q1armel/builds/enca/.configured] Error 1

http://dl.cihar.com/enca/enca-1.13.tar.bz2
&amp;lt;http://dl.cihar.com/enca/enca-1.13.tar.bz2&amp;gt;


Thank you in advance

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-03-14T15:58:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25151">
    <title>SlugOS 5.3 boot disk errors</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25151</link>
    <description>&lt;pre&gt;Hello,
The boot disk of my NSLU2 with SlugOS 5.3 has several errors. I still can boot.
I tried to fix the errors by running fsck when the disk was attached to a Ubuntu desktop. I am afraid serveral files are corrupted. I cannot connect from my Windows desktop to samba anymore.
Is there a way to re-TURNUP creating a new bootdrive?
I'm not a Linux expert, so be gentle on me, please!

The log says:
Mar 11 11:30:59 (none) user.notice kernel: scsi 1:0:0:0: Direct-Access     SAMSUNG  HD154UI               PQ: 0 ANSI: 2 CCS
Mar 11 11:30:59 (none) user.notice kernel: sd 1:0:0:0: [sdb] 2930277168 512-byte hardware sectors (1500302 MB)
Mar 11 11:30:59 (none) user.notice kernel: sd 1:0:0:0: [sdb] Write Protect is off
Mar 11 11:30:59 (none) user.debug kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 38 00 00
Mar 11 11:30:59 (none) user.err kernel: sd 1:0:0:0: [sdb] Assuming drive cache: write through
Mar 11 11:30:59 (none) user.notice kernel: sd 1:0:0:0: [sdb] 2930277168 512-byte hardware sectors (1500302 MB)
Mar 11 11:30:59 (n&lt;/pre&gt;</description>
    <dc:creator>Jos</dc:creator>
    <dc:date>2012-03-11T14:52:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25148">
    <title>smartmontools package fix to work around g++ 4.2 bug on arm</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25148</link>
    <description>&lt;pre&gt;Finally - I found a way to subscribe. 

Here is a patch to work around a g++ bug on arm processors.
It avoids a sigsegv when smartctl initializes a device object.
I tested it on a qnap ts419pii.
Details can be found here: 
https://sourceforge.net/apps/trac/smartmontools/ticket/219


$ svn diff                                                                                                                                 
Index: make/smartmontools.mk                                                                                                               
===================================================================                                                                        
--- make/smartmontools.mk       (Revision 12720)                                                                                           
+++ make/smartmontools.mk       (Arbeitskopie)                                                                                             
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -45,7 +45,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;                      &lt;/pre&gt;</description>
    <dc:creator>Joachim Banzhaf</dc:creator>
    <dc:date>2012-03-06T01:06:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25147">
    <title>perl for cs08q1armel invalid (no libperl)</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25147</link>
    <description>&lt;pre&gt;I installed perl 5.10 on my qnap ts-419pii yesterday from 
http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/

The installed perl did not work (libperl was not in the ipk file).

Then I used the optware svn to crosscompile it myself. That perl worked fine.
Maybe something went wrong on your build server?




------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>Joachim Banzhaf</dc:creator>
    <dc:date>2012-03-06T01:18:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25144">
    <title>Lockfiles</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25144</link>
    <description>&lt;pre&gt;I have a resource (an EEPROM on the i2cbus that I have brought out) that needs to be accessed by a server and various subsidiary programs. I had hoped to arrange for the mutex in the kernel thst is part of the i2c device driver to keep them from treading on each other, but there are problems there (which I am still working on).

So can lockfiles be reliably used for the purpose. I.e., is creating a file an atomic process such that if process A creates it and process B tries to create/access it a moment later, will process B always see that it is already there? I see that there is a special add-on that can be used to create lockfiles, but that seems to be aimed at complicated situations involving NFS. In my case, both A and B are running on the slug.

I am using slugosBE v 5.3.



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-03-02T19:34:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25141">
    <title>nslu2 dead?</title>
    <link>http://comments.gmane.org/gmane.comp.misc.nslu2.linux/25141</link>
    <description>&lt;pre&gt;Hi!

My nslu2 was working for a long, long time with Debian 5 without problems
but some time ago I use the HDD for other purposes.

Yesterday I try to use again my nslu2 with other HDD, but not works.

Symptoms.

-Only the Ethernet led is on (green) but I can see the nslug connected on
my router.
-If I connect one usb hdd, the led still off.

I have put the nslug on update mode and installed the upgrade utility for
windows.

-When I connect nslug to my PC I can update the firmware (at least, not
raise any error)
-After flash the  firmware and prepare the HDD with this guide [1], the
situation is the same, only the Ethernet led is on.

Any ideas?


[1]http://www.cyrius.com/debian/nslu2/unpack.html
&lt;/pre&gt;</description>
    <dc:creator>Carlos Garces</dc:creator>
    <dc:date>2012-02-29T22:02:35</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.misc.nslu2.linux">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.misc.nslu2.linux</link>
  </textinput>
</rdf:RDF>

