From 006d2ad3a6a39ea1be56137ca17fbc2b998b5c4c Mon Sep 17 00:00:00 2001 From: Aseda Aboagye Date: Wed, 4 Nov 2015 14:50:37 -0800 Subject: [PATCH] common: host_command_master: Add buf to .bss.slow. BUG=chrome-os-partner:46056 BUG=chrome-os-partner:46063 BRANCH=None TEST=Enable CONFIG_REPLACE_LOADER_WITH_BSS_SLOW on GLaDOS. Build, flash, and verify that AP and EC boot. TEST=make -j buildall tests CQ-DEPEND=CL:311209 Change-Id: Idb078b537addd0439f71f99489c27a6d1303ec5a Signed-off-by: Aseda Aboagye Reviewed-on: https://chromium-review.googlesource.com/311426 Commit-Ready: Aseda Aboagye Tested-by: Aseda Aboagye Reviewed-by: Randall Spangler Reviewed-by: Alec Berg --- common/host_command_master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/host_command_master.c b/common/host_command_master.c index 39bbf37df5..d0a16e1331 100644 --- a/common/host_command_master.c +++ b/common/host_command_master.c @@ -188,8 +188,8 @@ int pd_host_command(int command, int version, static int command_pd_mcu(int argc, char **argv) { char *e; - static char outbuf[128]; - static char inbuf[128]; + static char __bss_slow outbuf[128]; + static char __bss_slow inbuf[128]; int command, version; int i, ret, tmp;