摘要:
检查一下主机的NFS服务是否正常工作,可以重启一下nfs服务:sudo /etc/init.d/portmap restart要是还不行的话,重新安装一遍nfs服务试试在移植cs89x0后,就一直碰到如下这个问题:nfs: server 192.168.10.1 not respondingnfs: server 192.168.10.1 not respondingnfs: server 192.168.10.1 OK……嵌入式系统要经过很多次很长时间的尝试才能挂上。初步怀疑是NFS配置的问题,后来猜测可能是由于cs8900a丢包严重造成的。在nfs faq找到:kernel: nfs: s 阅读全文
摘要:
用arm-linux-gcc 4.00以上的编译器做出都 文件系统老是报这个错 ,而用rm-linux-gcc 3.xx 版本都都不会,看来一下内核的配置原来问题在这里Kernel Features ---> [*] Use the ARM EABI to compile the kernel [*] Allow old ABI binaries to run with this kernel (EXPERIMENTA)把这个选上就可以了--------------------------------------------------------------------------.. 阅读全文
摘要:
一. 根据原理图,确认网卡的地址和中断号地址:0x19000000中断号: EINT9二. 修改drivers/net/cs89x0.c,指定CS8900A使用的资源#elif defined(CONFIG_ARCH_S3C2410)#include#include3c2410/regs-mem.h>#define S3C24XX_PA_CS8900 0x19000000static unsigned int netcard_portlist[] __initdate = {0, 0};static unsigned int cs8900_irq_map[] = {IRQ_EINT9, 阅读全文