会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
野生指针
博客园
首页
新随笔
联系
订阅
管理
2026年5月13日
u-boot命令
摘要: bootm 启动内存中的mkimage内核映像,如image.ub,通常包含内核和设备树。可以用tftpboot命令 通过tftp协议将远程文件写入内存 netboot = tftpboot + bootm bootz 启动内存中的zImage映像。bootz [addr [initrd[:size
阅读全文
posted @ 2026-05-13 14:19 p_wild
阅读(0)
评论(0)
推荐(0)
2026年5月12日
Linux 启动流程分析
摘要: 入口 vmlinux.lds中 ENTRY(stext) 说明入口在stext中,位于 arch/arm/kernel/head.S,如下: ENTRY(stext) ARM_BE8(setend be ) @ ensure we are in BE8 mode THUMB( badr r9, 1f
阅读全文
posted @ 2026-05-12 09:33 p_wild
阅读(2)
评论(0)
推荐(0)
2026年5月8日
Linux make 过程分析
摘要: make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- all -j16 如果make不带任何参数,匹配默认目标_all # If building an external module we do not care about the all: rule
阅读全文
posted @ 2026-05-08 13:45 p_wild
阅读(4)
评论(0)
推荐(0)
Linux make defconfig过程分析
摘要: make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xilinx_zynq_defconfig .config文件生成过程 - 顶层makefile 首先判断是否为make *config,如果是的话 config_targets=1, dot_conf
阅读全文
posted @ 2026-05-08 10:33 p_wild
阅读(4)
评论(0)
推荐(0)
公告