This is the mail archive of the crossgcc@sources.redhat.com mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Thanks !


Le jeu 26/08/2004 Ã 16:51, Inna Povolotsky a Ãcrit :
> Hi,
> 
> Bertrand - actually, - thanks to the previous help from you, Dan Kegel and Martin Schaffner - I did successfully used Cygwin for Linux 2.6.8-rc4 cross-compilation for MPC 8270 - I've managed to build Linux 2.6.8 kernel zImage, loadable onto MPC 8270 by U-boot, which (the kernel image, that is) runs identically to the image cross-compiled "natively" on Intel machine, running Red Hat Linux. Also I want to aknowledge that building functional images for MPC827X on Linux 2.6(.8-rc4) in general became possible due to contributions to the Linux code from Kumar Gala.
> 
> Thanks,
> Best Regards,
> Alex Povolotsky
> 
> PS Bertrand - could you share with me more details how to set the NFS server provided by Cygwin ?

No problem,here is how i do it:

run nfs-server-config
	-> for me it is always giving a strange error about mount points but
you can ignore it

this script will create basic files (/etc/exports) and install the
needed services in windows.

then to start nfs :
cygrunsrv -S portmap
cygrunsrv -S mountd
cygrunsrv -S nfsd

this should be done in the reverse order to stop it

Here is a part of a script i made to automaticaly do that:

case $mode in
install)
	nfs-server-config > /dev/null 2>&1 || echo
	exit 1
	;;
start)
	cygrunsrv -S portmap
	cygrunsrv -S mountd
	cygrunsrv -S nfsd
	exit 1
	;;
stop)
	cygrunsrv -E nfsd
	cygrunsrv -E mountd
	cygrunsrv -E portmap
	exit 1
	;;
restart)
	cygrunsrv -E nfsd
	cygrunsrv -E mountd
	cygrunsrv -E portmap
	cygrunsrv -S portmap
	cygrunsrv -S mountd
	cygrunsrv -S nfsd
	exit 1
	;;
remove)
	cygrunsrv -R nfsd
	cygrunsrv -R mountd
	cygrunsrv -R portmap
	exit 1
	;;
*)


have fun

bertrand

> 
> 
> ________________________________________________________________
> The best thing to hit the Internet in years - Juno SpeedBand!
> Surf the Web up to FIVE TIMES FASTER!
> Only $14.95/ month - visit www.juno.com to sign up today!
> 


------
Want more information?  See the CrossGCC FAQ, http://www.objsw.com/CrossGCC/
Want to unsubscribe? Send a note to crossgcc-unsubscribe@sources.redhat.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]