summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Tinelli <[email protected]>2017-02-17 16:48:59 +0300
committerBin Meng <[email protected]>2017-02-21 15:10:50 +0800
commit20bfac0599bd7eaad901287fe4a343f9fd6cf6ef (patch)
tree5101ac028ede636d8272e34eaca987b7cbd1a942
parent7a96fd8ef002e85ccd8ae5907de9d45fc9002c36 (diff)
x86: zImage: add Intel MID platforms support
Intel MID platform boards have special treatment, such as boot parameter setting. Assign hardware_subarch accordingly if CONFIG_INTEL_MID is set. Reviewed-by: Bin Meng <[email protected]> Reviewed-by: Simon Glass <[email protected]> Signed-off-by: Vincent Tinelli <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]>
-rw-r--r--arch/x86/lib/zimage.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c
index b6b0f2beb3a..aafbeb01f90 100644
--- a/arch/x86/lib/zimage.c
+++ b/arch/x86/lib/zimage.c
@@ -246,6 +246,10 @@ int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
hdr->setup_move_size = 0x9100;
}
+#if defined(CONFIG_INTEL_MID)
+ hdr->hardware_subarch = X86_SUBARCH_INTEL_MID;
+#endif
+
/* build command line at COMMAND_LINE_OFFSET */
build_command_line(cmd_line, auto_boot);
}