Linux内核启动-从入口到start_kernel

摘要: 1. 内核启动要求 arch/arm64/boot/head.S开始的注释简单说明了内核启动的条件。更详细的内容可以查看内核文档Documentation/arm64/booting.rst或Documentation/translations/zh_CN/arm64/booting.txt。 /* 阅读全文
posted @ 2022-02-10 22:49 kingdix10 阅读(2380) 评论(0) 推荐(1) 编辑

C语言代码格式脚本-astyle

摘要: 安装astyle sudo apt install astyle 代码格式化脚本 #!/bin/sh # http://astyle.sourceforge.net/astyle.html PARAMS="--style=otbs " # "One True Brace Style" uses li 阅读全文
posted @ 2022-02-09 21:33 kingdix10 阅读(152) 评论(0) 推荐(0) 编辑