|
使用1.3.0,用skyeye -e u-boot可执行elf,并运行起来u-boot,
但是我想运行u-boot.bin,使用如下两种conf都无法start
conf1:
# physical memory
mem_bank: map=F, type=RW, addr=0x00000000, size=0x01000000, file=./u-boot.bin,boot=yes
mem_bank: map=M, type=RW, addr=0xc0000000, size=0x00800000
mem_bank: map=M, type=RW, addr=0xc0800000, size=0x00800000, file=./initrd.img
mem_bank: map=M, type=RW, addr=0xc1000000, size=0x03000000
显示的信息
arch: arm
cpu info: armv4, arm920t, 41009200, ff00fff0, 2
In do_mach_option, mach info: name s3c2410x, mach_init addr 0xb526a0
ethmod num=1, mac addr=8:0:3e:26:a:5b, hostip=192.168.56.15
uart_mod:3, desc_in:, desc_out:, converter:
In create_uart_console
lcd_mod:1
Loaded FLASH ./u-boot.bin
Loaded RAM ./initrd.img
SKYEYE: use arm920t mmu ops
In SIM_start, Set PC to the address 0x0
段错误 (core dumped)
conf2:# physical memory
mem_bank: map=M, type=RW, addr=0x00000000, size=0x01000000, file=./u-boot.bin,boot=yes
mem_bank: map=M, type=RW, addr=0xc0000000, size=0x00800000
mem_bank: map=M, type=RW, addr=0xc0800000, size=0x00800000, file=./initrd.img
mem_bank: map=M, type=RW, addr=0xc1000000, size=0x03000000
显示的信息
arch: arm
cpu info: armv4, arm920t, 41009200, ff00fff0, 2
In do_mach_option, mach info: name s3c2410x, mach_init addr 0xb526a0
ethmod num=1, mac addr=8:0:3e:26:a:5b, hostip=192.168.56.15
uart_mod:3, desc_in:, desc_out:, converter:
In create_uart_console
lcd_mod:1
Loaded RAM ./u-boot.bin
Loaded RAM ./initrd.img
SKYEYE: use arm920t mmu ops
In SIM_start, Set PC to the address 0x0
段错误 (core dumped) |
|