[uClinux-dev] linux to coldfire MCF52259

2011-03-23 Thread Luboš Melichar
Hi all,
could anyone help me how to get linux to coldfire?

I am really a beginner in this way.
I dont know which tools I need...
Is the dBUG tool already included in the chip?
I would appreciate any help - links, tutorials ...

Thanks
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


Re: [uClinux-dev] snmpd

2010-12-07 Thread Luboš Melichar
So I made a little progress..

#start snmpd
/ # snmpd  -c mystring  &

#make snmpwalk
mel...@meloun-laptop:~$ snmpwalk -v 1 -c mystring 10.88.96.92

#and I get
End of Mib

Where should be configuration file snmpd.conf?
How should he looks like?

thanks.






2010/12/7 MrGates <120368...@qq.com>:
> do you have a configure file named snmpd.conf ?
> This file uses for controling write access ,ip address and so on
> just try it
>
>
> -- Original --
> From: "Lubo Melichar";
> Date: 2010年12月7日(星期二) 凌晨0:00
> To: "uClinux development list";
> Subject: [uClinux-dev] snmpd
>
> Hi,
> I'm working on xport pro based on uClinux.
> Now I've installed snmp daemon and I am trying to make first snmp step.
> On linux side I just start a daemon
>
> / # snmpd
>
>  (Help looks like "Usage: snmpd [-h lhost] [-p lport] [-c community")
>
> On other computer I've tried just
>
> $ snmpwalk -c public 10.88.96.92
>
> But I get
>
> snmpwalk: Timeout
>
>
> I  am quite new in these thinks, so thanks for any answer.
>
>
> Lubos.
> ___
> uClinux-dev mailing list
> uClinux-dev@uclinux.org
> http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
> This message was resent by uclinux-dev@uclinux.org
> To unsubscribe see:
> http://mailman.uclinux.org/mailman/options/uclinux-dev
>
> ___
> uClinux-dev mailing list
> uClinux-dev@uclinux.org
> http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
> This message was resent by uclinux-dev@uclinux.org
> To unsubscribe see:
> http://mailman.uclinux.org/mailman/options/uclinux-dev
>



-- 
Sportuješ? Meloun tě zve na www.esportuj.cz !
Programuješ? Baví tě elektronika? Mrkni na http://kompiluj.blogspot.com/ !
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


[uClinux-dev] snmpd

2010-12-06 Thread Luboš Melichar
Hi,
I'm working on xport pro based on uClinux.
Now I've installed snmp daemon and I am trying to make first snmp step.
On linux side I just start a daemon

/ # snmpd

 (Help looks like "Usage: snmpd [-h lhost] [-p lport] [-c community")

On other computer I've tried just

$ snmpwalk -c public 10.88.96.92

But I get

snmpwalk: Timeout


I  am quite new in these thinks, so thanks for any answer.


Lubos.
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


Re: [uClinux-dev] shared memory, shmget error

2010-09-23 Thread Luboš Melichar
Yes, it works.
Thanks.

2010/9/21 Ulisses Reina Montenegro de Albuquerque
:
> Luboš & Alexander,
>
>> Hello Luboš,
>>
>> On Tuesday 21 September 2010, 15:04:33 you wrote:
>> > I get an error
>> >
>> > Page size - 4096
>> > Error in socket - 38
>>
>> The errno 38 corresponds to ENOSYS which means function not
>> implemented. My
>> first idea about this is you missed a kernel config. CONFIG_SYSVIPC is
>> possibly one. Enable it.
>> I had once a similar problem with message queues which have a separate
>> kernel
>> config.
>
> There are some limitations on SHM support on NON-MMU platforms (which I 
> assume you are using, due to your questioning being specific on uClinux), 
> please check out:
>
> http://www.mjmwired.net/kernel/Documentation/nommu-mmap.txt
>
>> HTH
>> Alexander
>
> Cheers
> Ulisses
>
> ___
> uClinux-dev mailing list
> uClinux-dev@uclinux.org
> http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
> This message was resent by uclinux-dev@uclinux.org
> To unsubscribe see:
> http://mailman.uclinux.org/mailman/options/uclinux-dev
>



-- 
Sportuješ? Meloun tě zve na www.esportuj.cz !
Programuješ? Baví tě elektronika? Mrkni na http://kompiluj.blogspot.com/ !
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


[uClinux-dev] shared memory, shmget error

2010-09-21 Thread Luboš Melichar
Hi all,
I am trying to implement shared memory in uClinux.

My C source

#include 
#include 
#include 
#include 
#include 

//using namespace std;

int main() {
int segment_id;

segment_id = shmget(04,  getpagesize(), IPC_CREAT | 0666);

printf("Page size - %d\n",getpagesize());
printf("Error in socket - %d\n",errno);
}

I get an error

Page size - 4096
Error in socket - 38


Can  anyone help me?
Thanks.
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


[uClinux-dev] uClinux, python, add packages

2010-09-03 Thread Luboš Melichar
Hi all,
I am quite novice, this is my first post, so please be nice and patient :-)
I have distribution of uClinux, throught "menu config" I check python
and compile("make").

I have python on my chip now.
But what about python packages? There are only some basic packeges as
sys, time etc.
I want to add for example package pyserial.

In directory /python/modules are some packages, these I can select in
file "setup".
But all of them are in C, how can I add generally python package to my
distribution?

thanks a lot.
___
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev