2008-09-17 09:59:19 Error compling uclinux kernel
mandar kulkarni (INDIA)
Message: 62312
Hi,
we are trying to configure uclinux kernel for BF-537 STAMP for using 'ssh' in the 'Networking Applications' enabled.But during compiling it is showing error 'ERROR 2'.we are using FEDORA(2.6.18-1.2798.FC6 PAE) linux version.
can you please specify which options should be enabled to be able to include instruction 'ssh' in the uclinux kernel.
mandar
QuoteReplyEditDelete
2008-09-17 13:09:34 Re: Error compling uclinux kernel
Mike Frysinger (UNITED STATES)
Message: 62322
post real error messages instead of trying to describe them
you also should also avoid openssh unless you actually need a specific feature it provides ... just use dropbear
QuoteReplyEditDelete
2008-10-09 17:54:36 Re: Error compling uclinux kernel
David Calvery (UNITED STATES)
Message: 63351
I'm getting an error in the build process when installing dropbear. It's trying to install in romfs/usr/bin but that directory isn't there. Creating the directory by adding "-d" to the first romfs-inst command in the dropbear makefile fixes this for me.
Following is the error message and the makefile line.
make[2]: Entering directory `/home/me/blackfin/sources/uclinux-dist/user/dropbear'
romfs-inst.sh build-dropbear-0.51/dropbearmulti /usr/bin/dropbear
cp: cannot create regular file `/home/me/blackfin/sources/uclinux-dist/romfs/usr/bin/dropbear': No such file or directory
make[2]: *** [romfs] Error 1
make[2]: Leaving directory `/home/me/blackfin/sources/uclinux-dist/user/dropbear'
make[1]: *** [romfs] Error 2
make[1]: Leaving directory `/home/me/blackfin/sources/uclinux-dist/user'
make: *** [romfs.subdirs] Error 1
In the dropbear makefile I changed.....
romfs:
$(ROMFSINST) build-$(VER)/dropbearmulti /usr/bin/dropbear
to.....
romfs:
$(ROMFSINST) -d build-$(VER)/dropbearmulti /usr/bin/dropbear
QuoteReplyEditDelete
2008-10-09 18:00:25 Re: Error compling uclinux kernel
Mike Frysinger (UNITED STATES)
Message: 63352
thanks, ive added your fix to svn