16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
/*
|
|
* Copyright (c) 2019 Intel Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifdef CONFIG_64BIT
|
|
. = ALIGN(8);
|
|
#else
|
|
. = ALIGN(4);
|
|
#endif
|
|
|
|
PROVIDE_HIDDEN (__init_array_start = .);
|
|
KEEP (*(SORT(.init_array.*)))
|
|
KEEP (*(.init_array*))
|
|
PROVIDE_HIDDEN (__init_array_end = .);
|