summaryrefslogtreecommitdiff
path: root/common/firmware_image.lds.S
blob: c282e7ac28be108f939806f2461a400ae8d1956e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* 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 "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_FW_RO_OFF) {
        *(.image.RO)
    } > FLASH
    . = ALIGN(CONFIG_FLASH_BANK_SIZE);
    .image.A : AT(CONFIG_FW_A_OFF) {
        *(.image.A)
    } > FLASH
#ifndef CONFIG_NO_RW_B
    . = ALIGN(CONFIG_FLASH_BANK_SIZE);
    .image.B : AT(CONFIG_FW_B_OFF) {
        *(.image.B)
    } > FLASH
#endif
}