欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

uboot引导bin文件-(uboot制作bin文件)

电脑选购 发布时间:2022-12-27 04:19:42
uboot引导bin文件 (uboot制作bin文件)

uboot默认是支持执行应用程序的,就像引导内核一样,我们也可以自己写一个应用程序,让uboot启动时引导。

在uboot examples/standalone 目录下,有hello_world.c文件,编译uboot的时候,会自动编译hello_world.bin文件。

裸机程序未加链接地址时,只能使用text代码段,如果裸机程序中使用出现了跨端操作(使用text端段以外的段:rodata,data,bss段),必须在链接时手工指定连接链接地址为实际的运行地址。

默认的链接地址由 Makefile中通过CONFIG_STANDALONE_LOAD_ADDR 指定。

电脑

这个地址不一定适合我们的板子,为了不影响uboot的正常运行,我们修改该地址为内核的链接地址0x280000。

重新编译的uboot后,将hello_world.电脑bin通过tftp加载到内存中。

uboot设置好参数。

=> setenv ipaddr 192.168.137.110=> setenv serverip 192.168.137.1=> setenv gatewayip 192.168.137.1=> tftp 0x00280000 hello_world.binethernet@fe300000 Waiting for PHY auto negotiation to complete.. doneSpeed: 1000, full duplexUsing ethernet@fe300000 deviceTFTP from server 192.168.137.1; our IP address is 192.168.137.110Filename 'hello_world.bin'.Load address: 0x280000Loading: # 0 Bytes/sdoneBytes transferred = 794 (31a hex)

执行go指令去引导我们的程序。

=> go 0x280000## Starting application at 0x00280000 ...Example expects ABI version 9Actual U-Boot ABI version 9Hello Worldargc = 1argv[0] = "0x280电脑000"argv[1] = "<NULL>"Hit any key to exit ...

成功打印出Hello World。

也可以将 go 0x280000 添加到bootcmd 中,每次启动内核前,先去引导应用程序,再引导内核。

https://blog.csdn.net/weixin_45861321/article/details/122459099


电脑
责任编辑:电脑知识学习网

电脑选购