一. uboot第一阶段初识 1.1. 什么是uboot第一阶段 1.1.1. 启动os三个阶段 1.1.1.1. bl0阶段 a. 这段代码是三星固化到iROM中,可以查看《S5PV210_iROM_ApplicationNote_Preliminary_20091126.pdf》 b. 这段代码 ...
分类:
其他好文 时间:
2019-01-16 01:01:57
阅读次数:
241
U盘启动,联网 $ sudo su sudo add apt add apt repository ppa:yannubuntu/boot repair apt get update apt get install boot repair 在dash中搜索boot repair 点recommand ...
使用软件 stripcc 下载地址:https://sourceforge.net/projects/stripcc/ 解压后,make; make install 使用方法: eg: uboot uboot 配置编译后直接运行 stripcc stripcc详细说明:http://stripcc. ...
分类:
其他好文 时间:
2019-01-12 12:03:50
阅读次数:
168
一. Makefile 配置 1.1. make xxx_config 1.1.1. 笔者实验时是make x210_sd_config a. x210_sd_config是Makefile下的一个目标 1.2.1. x210_sd_config 相关代码分析 a. @表示静默执行 b. MKCON ...
分类:
其他好文 时间:
2019-01-12 01:05:46
阅读次数:
185
find cpu datasheet , watchdog relate registers: 0x18060008 watchdong timer control 0x1806000c watchdog timer we can read and write watchdog register u ...
分类:
其他好文 时间:
2019-01-09 17:33:20
阅读次数:
225
一. uboot运行时环境变量分布 1.1. 环境变量有2份,一份在Flash中,另一份在DDR中。uboot开机时一次性从Flash中读取全部环境变量到DDR中作为环境变量的初始化值,然后使用过程中都是用DDR中这一份,用户可以用saveenv指令将DDR中的环境变量重新写入Flash中去更新Fl ...
分类:
其他好文 时间:
2019-01-09 01:20:09
阅读次数:
148
一. 常用简单命令 1.1. help命令 a. 帮助查看其他命令的使用方法,类型linux下man b. 示例: help help x210 # help help help [command ...] - show help information (for 'command') 'help' ...
分类:
其他好文 时间:
2019-01-09 00:36:43
阅读次数:
244
一. 什么是uboot 1.1. uboot的由来 1.1.1. uboot是SourceForge上的开源项目 1.1.2. uboot就是由一个人发起,然后由整个网络上所有感兴趣的人共同维护发展而来的一个bootloader(与linux相似)。 1.1.3. uboot经过多年发展,已经成为事 ...
分类:
其他好文 时间:
2019-01-08 23:39:57
阅读次数:
286
一、uboot 环境变量: 1. 打印环境变量:# print 2. 设置启动参数# set bootargs noinitrd init=/linuxrc console=ttySAC0,115200 root=/dev/nfs nfsroot=192.168.1.103:/work/nfs_ro ...
分类:
其他好文 时间:
2019-01-02 12:26:56
阅读次数:
237
一,defconfig与.config是什么关系? .config不是defconfig的拷贝,defconfig仅仅保存与默认配置不同的选项。配置阶段综合KCONFIG文件与defconfig,有冲突时以defconfig为准。 二,defconfig中的#CONFIG_XXX is not se ...
分类:
其他好文 时间:
2018-12-23 15:32:30
阅读次数:
181