44628735b8
The CONFIG_ROM_START_OFFSET is supposed to be added to the current when linking, instead of having the current address set to it. So fix that. Not sure why it worked up to this point, but llvm/clang/lld complained that it could not move location counter backward. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
. += CONFIG_ROM_START_OFFSET;
|
|
. = ALIGN(4);
|