make:uboot错误139

news/2024/7/21 2:06:02 标签: uboot

ubootlds_0">(1)问题:我这里修改了Makefile中的文件,让文件只编译不链接,但是我忘了在链接脚本u-boot.lds中添加链接所以错误。

在这里插入图片描述

ubootlds_4">(2)解决方法:在链接脚本中添加链接u-boot.lds

在这里插入图片描述


http://www.niftyadmin.cn/n/892907.html

相关文章

以官方uboot移植uboot(时钟显示移植)

(1)lowlevel_init.S修改 bl system_clock_init//时钟初始化移植 system_clock_init:ldr r0, ELFIN_CLOCK_POWER_BASE 0xe0100000/* Set Mux to FIN */ ldr r1, 0x0 str r1, [r0, #CLK_SRC0_OFFSET]ldr r1, APLL_LOCKTIME_VAL str r1, [r0, #APLL_LOCK_O…

以官方uboot移植uboot(DDR配置显示移植)

(1)修改Goni.c (2)修改cache.c (3)修改s5p_goni.h

cmd_mmc.c: In function ‘do_mmcinfo‘: cmd_mmc.c:107: warning: implicit declaration of function ‘get_m

可能mmc驱动和命令不匹配,将对应的cmd_mmc.c复制到common中就可以了