blob: 5c1bcbff2e09a7ffc95c23621943a56fc7922b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* This script forces the inclusion of boot code by creating references
to all the initialisation functions. These early references also
ensure custom versions of code are pulled out of user supplied
objects and libraries before default implementations. */
EXTERN (__reset_vector);
EXTERN (__init_cp0);
EXTERN (__init_l23cache);
EXTERN (__init_icache);
EXTERN (__change_k0_cca);
EXTERN (__init_dcache);
EXTERN (__init_tlb);
EXTERN (__boot_init_hook);
PROVIDE (__boot_init_hook = 0);
|