mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 08:31:52 +00:00
This file will soon contain the exhaustive list of all CONFIG defines and their descriptions. Chip-level configs are renamed to config_chip.h to avoid naming conflicts. BUG=chrome-os-partner:18343 BRANCH=none TEST=build all platforms Change-Id: I9e94146f5b4c016894bd3ae3d371c4b9f3f69afe Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/62122 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
29 lines
829 B
ArmAsm
29 lines
829 B
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 "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_FW_RO_OFF) {
|
|
*(.image.RO)
|
|
} > FLASH =0xff
|
|
. = ALIGN(CONFIG_FLASH_BANK_SIZE);
|
|
.image.RW : AT(CONFIG_FLASH_BASE + CONFIG_FW_RW_OFF) {
|
|
*(.image.RW)
|
|
BYTE(0xEA) /* Mark end explicitly */
|
|
} > FLASH =0xff
|
|
.padding : AT(CONFIG_FLASH_BASE + CONFIG_FLASH_SIZE - 1) {
|
|
BYTE(0xff);
|
|
} > FLASH =0xff
|
|
}
|