# uboot-mx287 **Repository Path**: 8721/uboot-mx287 ## Basic Information - **Project Name**: uboot-mx287 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2016-08-05 - **Last Updated**: 2025-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README > 2016-08-02 MenglongWoo ## 内存调试uboot ### 1. uboot环境变量配置 tftp服务器IP:192.168.1.251 开发板IP:192.168.1.6 mx287内存空间0x40000000 - 0x7FFFFFFF 共1G **(本开发板仅支持128M)** > 参考资料 MCIM28RM.pdf ``` serverip=192.168.1.251 ipaddr=192.168.1.6 dbg-uboot=tftp 0x44000000 192.168.1.251:u-boot.bin;go 0x44000000 saveenv ``` * 启动调试uboot ``` run dbg-uboot ``` ### 2. 内存映射 查阅 board/freescale/mx28_evk/config.mk | 模块 | 加载地址 | |------|----------| |uboot |0x41008000| |kernel |0x42000000| |uboot-ram |0x44000000| ### 3. 怎么编译两种模式uboot * 普通从NAND启动uboot ``` make ``` * 在ram调试uboot ``` make RAMDBG=y ``` ## 问题 目前下载从nand启动的uboot不能运行,具体原因未知,开发板提供商未找到uboot相关编译文档