summaryrefslogtreecommitdiff
path: root/common/firmware_image.S
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2012-02-16 13:07:32 -0800
committerVic Yang <victoryang@chromium.org>2012-02-16 14:06:55 -0800
commite75a32d2e3e9b62c47f4792d9ca17fb3b70b95d4 (patch)
tree5a0da8cb4006359c8924d81e979d3e8475d49db3 /common/firmware_image.S
parentb221c77b6293ad03e2610b940e2d39de6d40c4db (diff)
downloadchrome-ec-e75a32d2e3e9b62c47f4792d9ca17fb3b70b95d4.tar.gz
Temporarily remove image RW.B due to code size.
To accomodate our growing code, image RW.B is removed so that RO and RW.A can both have 60K space. This is just a temporary solution. Add RW.B back when we have enough space for all three images. Also add license header to firmware_image.lds.S so that repo does not complain about it. BUG=chrome-os-partner:8079 TEST=build image and run on proto-0. Change-Id: I85b723f3e645c12fd89b189263ca44d58c4621eb Signed-off-by: Vic Yang <victoryang@chromium.org>
Diffstat (limited to 'common/firmware_image.S')
-rw-r--r--common/firmware_image.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/firmware_image.S b/common/firmware_image.S
index 78207f96cf..8ffe1eb76b 100644
--- a/common/firmware_image.S
+++ b/common/firmware_image.S
@@ -20,6 +20,8 @@
.section .image.A, "ax"
.incbin FW_IMAGE(A)
+#ifndef CONFIG_NO_RW_B
/* Read Write firmware copy B */
.section .image.B, "ax"
.incbin FW_IMAGE(B)
+#endif