diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-15 14:37:48 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-26 07:54:09 -0700 |
commit | 03e3c316537212957947b311827d7d671651e7b4 (patch) | |
tree | 256a81407529dd2ccc6e142203676dc49f26d3e5 /doc/README.x86 | |
parent | 7a867609248aaca5f293ed2abc8fb662421cae21 (diff) | |
download | u-boot-03e3c316537212957947b311827d7d671651e7b4.tar.gz u-boot-03e3c316537212957947b311827d7d671651e7b4.tar.xz u-boot-03e3c316537212957947b311827d7d671651e7b4.zip |
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>
Diffstat (limited to 'doc/README.x86')
-rw-r--r-- | doc/README.x86 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.x86 b/doc/README.x86 index 85ff1819c8..3bab5cf64e 100644 --- a/doc/README.x86 +++ b/doc/README.x86 @@ -654,13 +654,13 @@ Use the device tree for configuration where possible. For the microcode you can create a suitable device tree file using the microcode tool: - ./tools/microcode-tool -d microcode.dat create <model> + ./tools/microcode-tool -d microcode.dat -m <model> create or if you only have header files and not the full Intel microcode.dat database: ./tools/microcode-tool -H BAY_TRAIL_FSP_KIT/Microcode/M0130673322.h \ -H BAY_TRAIL_FSP_KIT/Microcode/M0130679901.h \ - create all + -m all create These are written to arch/x86/dts/microcode/ by default. |