1# bootstrap Module<a name="EN-US_TOPIC_0000001063402356"></a> 2 3This module implements automatic service initialization. That is, the initialization function does not need to be explicitly called. Instead, it is declared using the macro definition and is automatically executed when the system is started. Specifically, after the function for starting a service is declared using a macro, it is placed in the predefined **zInit** code segment. During system startup, the **OHOS\_SystemInit** API is called to traverse the code segment and call the functions in the code segment. Therefore, you need to include the **zInit** code segment in the linker script and call the **OHOS\_SystemInit** API in the **main** function. 4 5For details about how to include the **zInit** code segment, see the Hi3861 linker script in **vendor/hisi/hi3861/hi3861/build/link/link.ld.S**. 6 7For details about the macros used by the bootstrap module to implement automatic service initialization, see [API document](https://device.harmonyos.com/en/docs/develop/apiref/init-0000001054598113) the Startup subsystem. 8 9## Available APIs<a name="section1633115419401"></a> 10 11The following table describes the major macros used by the bootstrap module to implement automatic service initialization. 12 13**Table 1** Major macros for the bootstrap module 14 15<a name="table12281332101910"></a> 16<table><thead align="left"><tr id="row102914328199"><th class="cellrowborder" valign="top" width="50%" id="mcps1.2.3.1.1"><p id="p229113221917"><a name="p229113221917"></a><a name="p229113221917"></a>Macro Name</p> 17</th> 18<th class="cellrowborder" valign="top" width="50%" id="mcps1.2.3.1.2"><p id="p429132161912"><a name="p429132161912"></a><a name="p429132161912"></a>Description</p> 19</th> 20</tr> 21</thead> 22<tbody><tr id="row13291532141919"><td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.1 "><p id="p14292032181919"><a name="p14292032181919"></a><a name="p14292032181919"></a>SYS_SERVICE_INIT(func)</p> 23</td> 24<td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.2 "><p id="p10291732181911"><a name="p10291732181911"></a><a name="p10291732181911"></a>Entry for initializing and starting a core system service</p> 25</td> 26</tr> 27<tr id="row1329133214197"><td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.1 "><p id="p15291332161915"><a name="p15291332161915"></a><a name="p15291332161915"></a>SYS_FEATURE_INIT(func)</p> 28</td> 29<td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.2 "><p id="p12292324198"><a name="p12292324198"></a><a name="p12292324198"></a>Entry for initializing and starting a core system feature</p> 30</td> 31</tr> 32<tr id="row1529133231911"><td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.1 "><p id="p9291332131915"><a name="p9291332131915"></a><a name="p9291332131915"></a>APP_SERVICE_INIT(func)</p> 33</td> 34<td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.2 "><p id="p1229432181920"><a name="p1229432181920"></a><a name="p1229432181920"></a>Entry for initializing and starting an application-layer service</p> 35</td> 36</tr> 37<tr id="row1229173214194"><td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.1 "><p id="p12923218193"><a name="p12923218193"></a><a name="p12923218193"></a>APP_FEATURE_INIT(func)</p> 38</td> 39<td class="cellrowborder" valign="top" width="50%" headers="mcps1.2.3.1.2 "><p id="p17291332121913"><a name="p17291332121913"></a><a name="p17291332121913"></a>Entry for initializing and starting an application-layer feature</p> 40</td> 41</tr> 42</tbody> 43</table> 44 45## How to Use<a name="section2055311316228"></a> 46 47The following is an example of using macros to automatically initialize services. 48 49``` 50void SystemServiceInit(void) { 51 printf("Init System Service\n"); 52} 53SYS_SERVICE_INIT(SystemServiceInit); 54 55void SystemFeatureInit(void) { 56 printf("Init System Feature\n"); 57} 58SYS_FEATURE_INIT(SystemFeatureInit); 59 60void AppServiceInit(void) { 61 printf("Init App Service\n"); 62} 63APP_SERVICE_INIT(AppServiceInit); 64 65void AppFeatureInit(void) { 66 printf("Init App Feature\n"); 67} 68APP_FEATURE_INIT(AppFeatureInit); 69 70// Logs are printed in the following sequence: 71// Init System Service 72// Init System Feature 73// Init App Service 74// Init App Feature 75``` 76 77