10 lines
220 B
Plaintext
10 lines
220 B
Plaintext
|
/*
|
||
|
* Copyright (c) 2019 Intel Corporation
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
PROVIDE_HIDDEN (__init_array_start = .);
|
||
|
KEEP (*(SORT(.init_array.*)))
|
||
|
KEEP (*(.init_array*))
|
||
|
PROVIDE_HIDDEN (__init_array_end = .);
|