转载:http://www.embeddedlinux.org.cn/html/jishuzixun/201312/19-2717.html第一步: BootLoader -- U boot1 在cpu/arm926ejs/start.s中a) b reset ; //jump to resetb)...
分类:
系统相关 时间:
2014-06-28 17:44:22
阅读次数:
427
uboot 源码包:u-boot1.1.6.tar
编译器:arm-linux-gcc-4.3.2
源码路径下配置 # make forlinx_nand_ram128_config
编译 # make
得到uboot.bin之后考到sd卡中,通过sd卡中的mmc.bin将uboot、kernel、filesystem烧到nandflash
启动出现一直重启的错误:
CPU: ...
分类:
其他好文 时间:
2014-05-21 15:40:24
阅读次数:
391
1.汇编语言实现,汇编和链接器分别为as86和ld86。代码如下:
.globl begtext,begdata,begbss,endtext,enddata,endbss
.text
begtext:
.data
begdata:
.bss
begbss:
.text
BOOTSEG=0x7c0
entry start
start:
jmpi go,BOOTSEG
go:
mov ax,...
分类:
其他好文 时间:
2014-05-09 06:29:56
阅读次数:
365
;*********************************************
; Boot1.asm
; - A Simple Bootloader
;
; Operating Systems Development Tutorial
;*********************************************
bits 16 ; we are in ...
分类:
其他好文 时间:
2014-05-05 13:13:30
阅读次数:
228