AW: [PATCH] Fix incorrect OS reporting in uname -o

2013-09-19 Thread dietmar.schindler
Von: Patrick 'P. J.' McDermott Gesendet: Mittwoch, 18. September 2013 05:48 On 2013-09-17 18:56, Rich Felker wrote: - strcpy(uname_info.os, GNU/Linux); + strcpy(uname_info.os, +#ifdef __GLIBC__ + GNU/ +#endif + Linux); I'd agree that most BusyBox-based

Re: [PATCH] Fix incorrect OS reporting in uname -o

2013-09-19 Thread Denys Vlasenko
On Wed, Sep 18, 2013 at 12:56 AM, Rich Felker dal...@aerifal.cx wrote: See attached. What is the point of such a change? People (presumably) use uname -o to determine whether the OS is Linux, or BSD, or other Unix. On Fedora, it says GNU/Linux. I suspect many other distros have the same. My

Re: [PATCH] Fix incorrect OS reporting in uname -o

2013-09-19 Thread Rich Felker
On Thu, Sep 19, 2013 at 04:18:59PM +0200, Denys Vlasenko wrote: On Wed, Sep 18, 2013 at 12:56 AM, Rich Felker dal...@aerifal.cx wrote: See attached. What is the point of such a change? People (presumably) use uname -o to determine whether the OS is Linux, or BSD, or other Unix. On

Re: dumpkmap/loadkmap misses handling of K_ALLOCATED and K_NOSUCHMAP

2013-09-19 Thread Denys Vlasenko
On Tue, Sep 17, 2013 at 3:09 AM, John Spencer maillist-busy...@barfooze.de wrote: using this debug patch --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c @@ -67,7 +67,10 @@ int loadkmap_main(int argc UNUSED_PARAM, char **argv) ke.kb_index = j;