连云港市城乡建设管理局网站运营初期的工作内容是什么?
摘要:连云港市城乡建设管理局网站,网站运营刚做时的工作内容,谷歌搜索网页版入口,网络推广方法怎么样一. uboot启动流程中函数 之前了解了uboot链接脚本文件 u-boot.lds。 从 u-boot.lds 中我们已经知道了入口点是 a
连云港市城乡建设管理局网站,网站运营刚做时的工作内容,谷歌搜索网页版入口,网络推广方法怎么样一. uboot启动流程中函数 之前了解了uboot链接脚本文件 u-boot.lds。
从 u-boot.lds 中我们已经知道了入口点是 arch/arm/lib/vectors.S 文件中的 _start。 本文了解 一下#xff0c;uboot启动过程中涉及的 reset 函数。本文继上一篇文章学习#xff0c;地址如下#xff…一. uboot启动流程中函数 之前了解了uboot链接脚本文件 u-boot.lds。
从 u-boot.lds 中我们已经知道了入口点是 arch/arm/lib/vectors.S 文件中的 _start。 本文了解 一下uboot启动过程中涉及的 reset 函数。本文继上一篇文章学习地址如下
uboot启动流程-uboot链接脚本u-boot.lds_凌肖战的博客-CSDN博客 二. reset 函数源码详解 从 u-boot.lds 中我们已经知道了入口点是 arch/arm/lib/vectors.S 文件中的 _start代码如下
38 /*
39 *************************************************************
40 *
41 * Exception vectors as described in ARM reference manuals
42 *
43 * Uses indirect branch to allow reaching handlers anywhere in
44 * memory.
45 **************************************************************
46 */
47
48 _start:
49
50 #ifdef CONFIG_SYS_DV_NOR_BOOT_CFG
51 .word CONFIG_SYS_DV_NOR_BOOT_CFG
52 #endif
53
54 b reset
55 ldr pc, _undefined_instruction
56 ldr pc, _software_interrupt
57 ldr pc, _prefetch_abort
58 ldr pc, _data_abort
59 ldr pc, _not_used
60 ldr pc, _irq
61 ldr pc, _fiq 第 48 行: _start 开始的是中断向量表其中 54~61 行就是中断向量表和我们裸机例程里面一样。 1. start.S 文件中的 reset 函数 第 54 行跳转到 reset 函数里面 reset 函数在 arch/arm/cpu/armv7/start.S 里面代码如下 32 .globl reset
33 .globl save_boot_params_ret
34
35 reset:
36 /* Allow the board to save important registers */
37 b save_boot_params start.S 文件的第 35 行就是 reset 函数。
