Uboot 移植步骤

Uboot 移植步骤:

  1. Vi  Makefile     注意修改交叉编译工具链
  2. Vi  boards.cfg      查看uboot 已支持的板子, 哪款板子跟我们要移植的板子更接近
  3. 如果origen 板子跟 我们的板子接近, 参考origen 板子移植我们的uboot
  4.   拷贝origne 板子的所有文件到fs4412 ,

Cp  -rf  board/samsung/origen    board/samsung/fs4412

Mv   board/samsung/fs4412/origen.c board/samsung/fs4412/fs4412.c

Vi  board/samsung/fs4412/Makefile     修改 把origen.o 改成  fs4412.o

 

  1. Cp  include/configs/origen.h   include/configs/fs4412.h   得到fs4412板子的配置文件
  2. Vi  boards.cfg   // 在该文件增加fs4412 板子的配置, 表示uboot 支持fs4412

 

  1. 点灯法确认uboot 是否被搬迁到ddr , 如果灯不亮, 三星的加密方式???
  2. 接下来第一个调试串口,     
  3. 接下来调试网卡 ,   tftp 命令就可以用了
  4. Emmc 电子硬盘的移植,

你可能感兴趣的:(Linux,硬件,arm)