[PlanetCCRMA] which Fedora?

Orcan Ogetbil oget.fedora at gmail.com
Wed Nov 10 01:18:11 PST 2010


On Tue, Nov 9, 2010 at 10:22 PM, Orcan Ogetbil wrote:
> On Tue, Nov 9, 2010 at 10:17 PM, Fernando Lopez-Lezcano wrote:
>> On 11/09/2010 07:12 PM, Orcan Ogetbil wrote:
>>>
>>> On Tue, Nov 9, 2010 at 10:00 PM, Fernando Lopez-Lezcano wrote:
>>>>
>>>> On 11/09/2010 06:27 PM, Orcan Ogetbil wrote:
>>>>>
>>>>> It's probably the best time to test it.
>>>>
>>>> Yes, I remember, I thought it was already included in your build...
>>>
>>> It is included :).
>>> All we need is an rt kernel that can run on F-14.
>>
>> Ah, then it is not working. I _am_ running an rt kernel, uname -r has
>> 'ccrma' in it... (it is a fc12 kernel but that should not matter).
>>
>
> Ah... I remember I tested this on F-13 both with and without CCRMA
> kernel and it worked fine (maybe I remember it wrong?)
>

In the patch, I think I need to use utsname.release instead of utsname.version
Could you send me the output of this program when you are running a
ccrma rt kernel on F-14?

#include <sys/utsname.h>
#include <iostream>
#include <string.h>

using namespace std;

int main()
{
  struct utsname utsname;
  int success = uname( &utsname );
  cout << "utsname.sysname:" << utsname.sysname << endl;
  cout << "utsname.version:" << utsname.version << endl;
  cout << "utsname.release:" << utsname.release << endl;
  cout << success << endl;
  cout << strstr( utsname.release, "ccrma" ) << endl;
}

Thanks,
Orcan



More information about the PlanetCCRMA mailing list