
uboot移植
Alen.Wang
智能机器人硕士,擅长复杂电路设计、嵌入式软件编程及系统架构设计,从事嵌入式AI开发工作,有多年项目开发经验。
我的联系邮箱 alen_wp@163.com
展开
-
uboot do_load函数分析
load mmc 0:2 0x10000000 /boot/zImage argv[1] argv[2] argv[4]int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], int fstype){ unsigned long addr; const char *addr_str; const char *fi...原创 2022-04-08 17:35:55 · 1114 阅读 · 0 评论 -
移植完linux-3.4.2内核,启动系统后使用命令ifconfig -a查看网络配置,没有eth0
问题:/ # ifconfig/ # ifconfig eth0 ifconfig: eth0: error fetching interface information: Device not found/ # ifconfig eth0 upifconfig: SIOCGIFFLAGS: No such device原因:机器id如果是SMDK2440的原创 2017-03-02 20:04:26 · 2953 阅读 · 0 评论 -
查看Linux内核版本的命令
方法一: 命令: uname -a 作用: 查看系统内核版本号及系统名称 方法二: 命令: cat /proc/version 作用: 查看目录"/proc"下version的信息,也可以得到当前系统的内核版本号及系统名称 下面是在单板里查看内核版本号和交叉编译器的版本/ #uname -aLinux (none) 3.4.2 #11 Tue D原创 2017-03-02 15:43:00 · 771 阅读 · 0 评论 -
c语言里如何调用汇编里的变量?
c语言里如何调用汇编里的变量?汇编语言:是声明全局变量.globl _end_ofs_end_ofs:.word _end - _startc语言:声明这个变量,然后再调用这个变量void board_init_r(gd_t *id, ulong dest_addr){...............monitor_flash_le原创 2016-11-23 20:59:41 · 4337 阅读 · 0 评论 -
__attribute__((noreturn))的用法
外文地址:http://www.unixwiz.net/techtips/gnu-c-attributes.html__attribute__ noreturn 表示没有返回值This attribute tells the compiler that the function won't ever return, and this can be used to原创 2016-11-23 15:50:26 · 14460 阅读 · 3 评论