U-Bootと2つのカーネルImage(uImage)を使用しています。タイムスタンプに基づいてカーネルを選択するコードをU-Bootに追加したいと思います。私はMIPSアーキテクチャを使用しています。この2つのカーネルは異なる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?