From: Vincent Tinelli Date: Fri, 17 Feb 2017 13:48:59 +0000 (+0300) Subject: x86: zImage: add Intel MID platforms support X-Git-Tag: v2017.03-rc3~10^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20bfac0599bd7eaad901287fe4a343f9fd6cf6ef;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Simon Glass Signed-off-by: Vincent Tinelli Signed-off-by: Andy Shevchenko --- diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index b6b0f2b..aafbeb0 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); }