duzhig 发表于 2007-1-31 19:24:58

at91rm9200dk开发板的skyeye.conf怎么写

at91rm9200dk开发板的skyeye.conf怎么写,bin格式的uboot已经编译好了,和内核,如何运行bin格式的内核仿真,我觉得主要是skyeye.cong的配置问题
我用ep7312编译好的uboot可以运行,但是at91rm9200dk的却不行为什么啊,哪位高手能告诉我怎么写at91rm9200dk的skyeye.conf多谢

duzhig 发表于 2007-2-4 20:36:50

怎么没有人能帮忙一下吗 多谢了

ksh 发表于 2007-2-6 16:08:37

That is hard to say. There is too many reasons. Such as:
before boot your linux, r1 register of arm machine should be set to machine ID defined by linux kernel.If you have not set r1 register, your linux can not boot. Forexample:
in arch/arm/mach/skyeye_mach_at91rm92.c of skyeye source , there is such code as the following:
    state->Reg = 251;    //for AT91RM9200
      state->Reg = 262;    //for AT91RM9200DK

So my suggestion is to debug your kernel of elf format by skyeye . And to find the reason why linux can not boot.

duzhig 发表于 2007-2-6 21:00:32

oh thanks a lot i just wanna test u-boot for at91rm9200 with skyeye,i compile
the u-boot by following commands make at91rm9200_config make all
the text_base=0x21f00000 ,how to write the skyeye.conf
so ican test it by skyeye -e u-boot
thanks again

ksh 发表于 2007-2-6 22:27:00

So you can run to run skyeye -d -e uboot.elf , and try to debug your elf file.

ksh 发表于 2007-2-6 22:28:07

That is still hard to say or indicate your problem. You can run to run skyeye -d -e uboot.elf , and try to debug your elf image step by step through skyeye.

duzhig 发表于 2007-2-7 17:59:01

oh thank u i will try
页: [1]
查看完整版本: at91rm9200dk开发板的skyeye.conf怎么写