我正在使用 U-Boot 和两个内核映像(uImage)。我想在 U-Boot 中添加一些代码,它将根据时间戳选择内核。我正在使用 MIPS 架构。这两个内核位于不同的 MTD 分区中。
例如:-
If kernel-1 is new, U-Boot will boot Kernel-1. and leave kernel-2 as it is.
If kernel-2 is new, U-Boot will boot kernel-2. and leave kernel-2 as it is.
问题:-
Is it possible to do so?
How can I add such functionality in U-boot?
Where to chage the code for the same?