mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
And if RW B isn't enabled, it's not even linked. BUG=chrome-os-partner:10881 TEST=on link, should be no B image, and 'sysjump B' should fail On BDS, still should be A and B images Signed-off-by: Randall Spangler <rspangler@chromium.org> Change-Id: Icb2af07881cc7e28b9b877f45824486a22fde8d7 Reviewed-on: https://gerrit.chromium.org/gerrit/26116
37 lines
1.1 KiB
ArmAsm
37 lines
1.1 KiB
ArmAsm
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "board.h"
|
|
#include "config.h"
|
|
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = CONFIG_FLASH_BASE, LENGTH = CONFIG_FLASH_SIZE
|
|
}
|
|
SECTIONS
|
|
{
|
|
. = ALIGN(CONFIG_FLASH_BANK_SIZE);
|
|
.image.RO : AT(CONFIG_FLASH_BASE + CONFIG_SECTION_RO_OFF) {
|
|
*(.image.RO)
|
|
} > FLASH =0xff
|
|
. = ALIGN(CONFIG_FLASH_BANK_SIZE);
|
|
.image.A : AT(CONFIG_FLASH_BASE + CONFIG_SECTION_A_OFF) {
|
|
*(.image.A)
|
|
BYTE(0xEA) /* Mark end explicitly */
|
|
} > FLASH =0xff
|
|
#ifdef CONFIG_RW_B
|
|
. = ALIGN(CONFIG_FLASH_BANK_SIZE);
|
|
.image.B : AT(CONFIG_FLASH_BASE + CONFIG_SECTION_B_OFF) {
|
|
*(.image.B)
|
|
BYTE(0xEB) /* Mark end explicitly */
|
|
} > FLASH =0xff
|
|
#endif
|
|
.padding : AT(CONFIG_FLASH_BASE + CONFIG_FLASH_SIZE - 1) {
|
|
BYTE(0xff);
|
|
} > FLASH =0xff
|
|
}
|