Hola, alguien aquí ha compilado alguna vez el kernel de un Blackfin?, es que soy novato en esto, y me estoy volviendo un poco loco.
Compilar me compila, pero ahora lo que quiero hacer es deshabilitar la consola para poder conectar con la tarjeta a través de telnet, y ahí va el problema, que no me deja.
En teoria (sacado de la web de blackfin), al compilar (uso "make menuconfig") selecciono estas opciones:
>> grep TELNET config/.config
CONFIG_USER_TELNETD_TELNETD=y
CONFIG_USER_TELNETD_DOES_NOT_USE_OPENPTY=y
CONFIG_USER_TELNET_TELNET=y
# CONFIG_USER_BUSYBOX_TELNET is not set
# CONFIG_USER_BUSYBOX_TELNETD is not set
Pero me da este error:
make[2]: Leaving directory `/home/vicent2/uClinux-dist.R1.1-RC3/user/busybox'
make[2]: Entering directory `/home/vicent2/uClinux-dist.R1.1-RC3/user/busybox'
SPLIT include/autoconf.h -> include/config/*
GEN include/bbconfigopts.h
LINK busybox_unstripped
applets/built-in.o:(.data.rel.ro.applets+0x3a0): undefined reference to `_telnet_main'
collect2: ld returned 1 exit status
make[2]: *** [busybox_unstripped] Error 1
make[2]: Leaving directory `/home/vicent2/uClinux-dist.R1.1-RC3/user/busybox'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/vicent2/uClinux-dist.R1.1-RC3/user'
make: *** [subdirs] Error 1
Alguna idea?