Re: Bug#911560: [Kinda solved] Re: Network not working on Olimex LIME2 rev K ??

2020-02-16 Thread Dominique Dumont
On Tuesday, 11 February 2020 14:16:22 CET Dominique Dumont wrote: > This is promising: > > https://lists.denx.de/pipermail/u-boot/2016-March/249735.html Or not :-( With this setup (and no GMAC_TX_DELAY), the network starts fine on rev Olimex LIME2 rev G.2 but not on rev K. All the best

Re: armel: floating point zero division does not raise exception

2020-02-16 Thread Adrian Bunk
On Sun, Feb 16, 2020 at 01:33:55PM +0100, Christian Kastner wrote: > On armel, dividing a flow by zero does not raise an exception, as it > does on other platforms. >... > Any suggestions on how to deal with this? Is this really a bug, or is my > test program above missing something? >... armel

Re: Y2038 - best way forward in Debian?

2020-02-16 Thread Adrian Bunk
On Fri, Feb 14, 2020 at 10:56:47AM -0600, John Goerzen wrote: > > The thing that we have to remember is that an operating system is a > platform for running software. This problem is rather thorny, because: > > 1) Some software is provided in only binary form and cannot be > recompiled > > 2)

armel: floating point zero division does not raise exception

2020-02-16 Thread Christian Kastner
On armel, dividing a flow by zero does not raise an exception, as it does on other platforms. $ cat divbyzero.c #include #include #include int main(int argc, char **argv) { float one = 1.0; feclearexcept(FE_ALL_EXCEPT); printf("Dividing by zero produces: ");