From: Simon Glass Date: Sat, 15 Aug 2015 20:37:48 +0000 (-0600) Subject: x86: Correct microcode documentation X-Git-Tag: KARO-TX6-2015-09-18~162 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=9b368643836770db1497991db7a28cc819b5d2ec 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 Reviewed-by: Bin Meng --- 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 + ./tools/microcode-tool -d microcode.dat -m 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.