File: load_sinit.plantuml

package info (click to toggle)
tboot 1.10.5-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,000 kB
  • sloc: ansic: 56,029; python: 6,595; perl: 2,303; sh: 455; asm: 442; makefile: 377
file content (28 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@startuml load SINIT
start

if (already loaded?) then (yes)
    stop
endif

if (SINIT in MBI? && match platform?) then (yes)
    :load SINIT from MBI;
endif

if (SINIT in BIOS? && match platform?) then (yes)
    if (BIOS SINIT newer than MBI?) then (yes)
        :use BIOS SINIT;
        stop
    endif
endif

if (SINIT was loaded?) then (yes)
    :copy MBI SINIT to SINIT region;
    :use MBI SINIT;
    stop
else (no)
    :no SINIT;
    stop
endif

@enduml