diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2013-10-31 16:49:01 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2013-11-07 22:36:05 +0000 |
commit | 03de7bee72cb5111b767cc54b8b52b379293e58f (patch) | |
tree | fba632cf8685ac1b4b135f9f2e894c8efe733fa6 /common | |
parent | e2f851aae244c0c233064192c79f46fe0744e58f (diff) | |
download | chrome-ec-03de7bee72cb5111b767cc54b8b52b379293e58f.tar.gz |
Move core-specific toolchain configuration to core/ directory
This is preparatory work to introduce a second core architecture.
Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
BRANCH=none
BUG=chrome-os-partner:23574
TEST=./util/make_all.sh
Change-Id: Icae8a7e475a4ba2a13f0d8f95629e8498a5a61da
Reviewed-on: https://chromium-review.googlesource.com/175419
Tested-by: Vincent Palatin <vpalatin@chromium.org>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Commit-Queue: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/firmware_image.lds.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/firmware_image.lds.S b/common/firmware_image.lds.S index 08e2138ad0..c655b4856d 100644 --- a/common/firmware_image.lds.S +++ b/common/firmware_image.lds.S @@ -5,8 +5,8 @@ #include "config.h" -OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") -OUTPUT_ARCH(arm) +OUTPUT_FORMAT(BFD_FORMAT, BFD_FORMAT, BFD_FORMAT) +OUTPUT_ARCH(BFD_ARCH) MEMORY { FLASH (rx) : ORIGIN = CONFIG_FLASH_BASE, LENGTH = CONFIG_FLASH_SIZE |