Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在查看 uboot 到 linux 控制转移的 u-boot 代码,并遇到了这个代码。这个任务是做什么的?
kernel_entry = (void (*)(int, int, uint))images->ep;
kernel_entry是指向函数的指针。该行确实将其分配为images->ep;(看起来意味着内核映像-> 入口点)。
kernel_entry
images->ep;