Commit 03e3c316537212957947b311827d7d671651e7b4

Authored by Simon Glass
1 parent 7a86760924

x86: Correct microcode documentation

This is incorrect since we require the -m parameter to the microcode tool.
Update the two examples to show this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -654,13 +654,13 @@
654 654 For the microcode you can create a suitable device tree file using the
655 655 microcode tool:
656 656  
657   - ./tools/microcode-tool -d microcode.dat create <model>
  657 + ./tools/microcode-tool -d microcode.dat -m <model> create
658 658  
659 659 or if you only have header files and not the full Intel microcode.dat database:
660 660  
661 661 ./tools/microcode-tool -H BAY_TRAIL_FSP_KIT/Microcode/M0130673322.h \
662 662 -H BAY_TRAIL_FSP_KIT/Microcode/M0130679901.h \
663   - create all
  663 + -m all create
664 664  
665 665 These are written to arch/x86/dts/microcode/ by default.
666 666