当前位置:   article > 正文

鸿蒙Hi3861学习二十-编译构造_vendor/company/product/fs.yml

vendor/company/product/fs.yml

一、简介

        在使用编译构造子系统前,应了解如下基本概念:

        子系统

        子系统是一个逻辑概念,它由一个或多个具体的组件构成OpenHarmony整体遵从分层设计,从下向上依次为:内核层系统服务层架构层应用层。系统功能按照“系统 > 子系统 > 组件”逐级展开,在多设备部署场景下,支持根据实际需求裁剪某些非必要的子系统或组件。

        组件

        系统最小的可复用、可配置、可剪裁的功能单元。组件具备目录独立可并行开发、可独立编译、可独立测试的特征。

        gn

        Generate ninja的缩写,用于产生ninja文件

        ninja

        ninja是一个专注于速度的小型构建系统

        hb

        OpenHarmony的命令行工具,用来执行编译命令。

      编译目录结构

  1. build/lite
  2. ├── components # 组件描述文件
  3. ├── figure # readme中的图片
  4. ├── hb # hb pip安装包源码
  5. ├── make_rootfs # 文件系统镜像制作脚本
  6. ├── config # 编译配置项
  7. │ ├── component # 组件相关的模板定义
  8. │ ├── kernel # 内核相关的编译配置
  9. │ └── subsystem # 子系统编译配置
  10. ├── platform # ld脚本
  11. ├── testfwk # 测试编译框架
  12. └── toolchain # 编译工具链配置,包括:编译器路径、编译选项、链接选项等

二、构建规则

        为了实现芯片解决方案、产品解决方案与OpenHarmony是解耦的、可插拔的,组件、芯片解决方案和产品解决方案的路径、目录树和配置需遵循一定的规则,具体如下:

      组件

        组件源码路径命名规则为:{领域} / {子系统} / {组件},组件目录树规则如下;

        注:组件的名称、源码路径、功能简介、是否必选、编译目标、RAM、ROM、编译输出、已适配的内核、可配置的特性和依赖等属性定义,在build/lite/components目录下对应子系统的json文件中,新增组件时需要在对应子系统json文件中添加对应的组件定义产品所配置的组件必须在某个子系统中被定义过,否则会校验失败

  1. component
  2. ├── interfaces
  3. │ ├── innerkits # 系统内接口,组件间使用
  4. │ └── kits # 应用接口,应用开发者使用
  5. ├── frameworks # framework实现
  6. ├── services # service实现
  7. └── BUILD.gn # 组件编译脚本

 以applications.json中的wifi_iot_sample_app为例:

  1. {
  2. "component": "wifi_iot_sample_app", #组件名称
  3. "description": "Wifi iot samples.", #组件功能描述
  4. "optional": "true", #组件是否为最小系统必选
  5. "dirs": [ #组件源码路径
  6. "applications/sample/wifi-iot/app"
  7. ],
  8. "targets": [ #组件编译入口
  9. "//applications/sample/wifi-iot/app"
  10. ],
  11. "rom": "", #组件ROM值
  12. "ram": "", #组件RAM估值
  13. "output": [], #组件编译输出
  14. "adapted_board": [ "hi3861v100" ], #组件已适配的芯片
  15. "adapted_kernel": [ "liteos_m" ], #组件已适配的内核
  16. "features": [], #组件可适配的特性
  17. "deps": {
  18. "components": [ #组件依赖的其他组件
  19. "utils_base"
  20. ]
  21. }
  22. },

        组件BUILD.gn的编译建议如下:

  • 编译目标名称与组件一致
  • 组件对外可配置的特性变量需声明在该组件BUILD.gn中,特性变量命名规则:ohos_{subsystem}_{component}_{feature}。特性在组件描述中也需要同步定义,在产品配置文件config.json中按需配置。
  • 宏定义规则:OHOS_{SUBSYSTEM}_{COMPONENT}_{FEATURE}

         

      芯片解决方案

        芯片解决方案是指基于某款开发板的完整解决方案,包含驱动设备侧接口适配开发板SDK等。

        芯片解决方案是一个特殊的组件,源码路径规则为:device / {芯片解决方案厂商} / {开发板}

        芯片解决方案组件会随产品选择的开发板默认编译

        芯片解决方案目录树规则如下:

  1. device
  2. └── hisilicon # 芯片解决方案厂商(海思)
  3. ├── BUILD.gn # 编译脚本
  4. ├── hals # OS南向接口适配
  5. ├── hispark_aries # Hi3518
  6. ├── hispark_pegasus # Hi3861
  7. ├── hispark_taurus # Hi3516

       

      产品解决方案

        产品解决方案为基于开发板的完整产品,主要包含产品对OS的适配组件拼装配置启动配置文件系统配置等。产品解决方案的源码路劲规则为:vendor / {产品方案解决厂商} / {产品名称}。产品解决方案也是一个特殊的组件

        产品解决方案的目录树规则如下:

  1. vendor
  2. └── hisilicon # 产品解决方案厂商(海思)
  3. ├── hispark_aries # 产品名称 Hi3518
  4. ├── hispark_pegasus # 产品名称 Hi3861
  5. ├── hispark_taurus # 产品名称 Hi3516
  6. │ ├── init_configs
  7. │ │ ├── etc # init进程启动配置(可选,仅linux内核需要)
  8. │ │ └── init.cfg # 系统服务启动配置
  9. │ ├── hals # 产品解决方案OS适配
  10. │ ├── BUILD.gn # 产品编译脚本
  11. │ └── config.json # 产品配置文件
  12. │ └── fs.yml # 文件系统打包配置
  13. └── ......

        注:新增产品需按如上的规则创建目录和文件,编译构建系统将按该规则扫描已配置的产品。

        关键目录和文件详细介绍如下:

        1.vendor / company / product / init_configs / etc

        该文件夹中包含rcs脚本,Sxxx脚本和fstab脚本。init进程在启动系统服务之前执行这些脚本。执行流程为“rcs -> fstab -> S00-xxx”。Sxxx脚本中的内容与开发板和产品需求有关,主要包括设备节点的创建、创建目录、扫描设备节点、修改文件权限等等。这些文件在产品编译的BUILD.gn中按需拷贝到产品out目录中,最终打包到rootfs镜像中

        2.vendor / company / product / init_configs / init.cfg

        init 进程启动服务的配置文件,当前支持解析的命令有:

  1. start:启动某个服务
  2. mkdir:创建文件夹
  3. chmod:修改指定路径/文件的权限
  4. chown:修改指定路径/文件的属性
  5. mount:挂在命令

        3.vendor / company / product / hals

        解决方案厂商对OS的适配,需要实现的接口请见各个组件的readme说明文档。

        4.vendor / company / product / config.json

        config.json 为编译构造的主入口,包含了开发板、OS组件和内核等配置信息。

        以hispark_pegasus为例

  1. "product_name": "wifiiot_hispark_pegasus", #产品名称
  2. "ohos_version": "OpenHarmony 1.0", #选择的OS版本
  3. "device_company": "hisilicon", #芯片厂商
  4. "board": "hispark_pegasus", #开发板名称
  5. "kernel_type": "liteos_m", #内核类型
  6. "kernel_version": "", #内核版本
  7. "subsystems": [ #子系统
  8. {
  9. "subsystem": "applications", #子系统名称
  10. "components": [
  11. { "component": "wifi_iot_sample_app", "features":[] } #选择的组件和组件的特性配置
  12. ]
  13. },

        5.vendor / company / product / BUILD.gn

        产品编译的入口,主要用于编译解决方案厂商源码和拷贝启动配置文件。如果某个产品被选择为要编译的产品,那么对应产品目录下的BUILD.gn会默认编译。一个典型的产品编译BUILD.gn应该如下:

  1. group("product") { # target名称需与product名称即三级目录名称一致
  2. deps = []
  3. # 拷贝init配置
  4. deps += [ "init_configs" ]
  5. # 其他
  6. ......
  7. }

三、新增组件

        在上一章中,添加了hello_world工程。这里回顾一下。目录结构如下:

  1. applications/sample
  2. └── wifi-iot
  3. └── app
  4. ├── hello_world
  5. ├── hello_world.c
  6. ├── BUILD.gn
  7. └──BUILD.gn

        hello_world下的BUILD.gn内容如下:

  1. static_library("hello_world") {
  2. sources = [
  3. "hello_world.c"
  4. ]
  5. include_dirs = [
  6. "//utils/native/lite/include",
  7. "//kernel/liteos_m/kal/cmsis",
  8. ]
  9. }

        hello_world.c内容如下:

  1. int cnt = 0;
  2. void HelloWorld(void)
  3. {
  4. printf("[DEMO] Hello world.\n");
  5. while(1)
  6. {
  7. cnt++;
  8. osDelay(100);
  9. printf("[DEMO] Hello world.[%d]\n",cnt);
  10. }
  11. }
  12. APP_FEATURE_INIT(HelloWorld);

      在原有组件中添加hello world

        修改app目录下的BUILD.gn文件如下:

  1. import("//build/lite/config/component/lite_component.gni")
  2. lite_component("app") {
  3. features = [
  4. "hello_world:hello_world",
  5. ]
  6. }

        此时编译,下载。

        看结果:

         可以看到,这里不单单是打印出hello world,还打印了很多test的代码。这是因为SDK默认是运行xts_test,需要关闭xts_test

        在vendor / hisilicon / hispark_pegasus / config.json中,将子系统“test”删除。注:这里不能注释掉,只能删除

  1. {
  2. "subsystem": "test",
  3. "components": [
  4. { "component": "xts_acts", "features":[] },
  5. { "component": "xts_tools", "features":[] }
  6. ]
  7. }

         重新编译,需要注意的是,这里只有clean后,重新build,设置才会生效

         重新clean,build,Upload后,运行正常。

      新建hello world组件

        不使用app目录下的BUILD.gn,内容如下:

  1. import("//build/lite/config/component/lite_component.gni")
  2. lite_component("app") {
  3. features = [
  4. ]
  5. }

        在上边的文章中介绍过,系统是通过 领域 -> 子系统 -> 组件来的。新增加的组件需要在build/lite/components目录下对应子系统的json文件中声明

        那么就在buld/lite/components/applications.json文件中增加如下代码:

  1. {
  2. "component": "hello_world",
  3. "description": "hello world.",
  4. "optional": "true",
  5. "dirs": [
  6. "applications/sample/wifi-iot/app/hello_world"
  7. ],
  8. "targets": [
  9. "//applications/sample/wifi-iot/app/hello_world"
  10. ],
  11. "rom": "",
  12. "ram": "",
  13. "output": [],
  14. "adapted_board": [ "hi3861v100" ],
  15. "adapted_kernel": [ "liteos_m" ],
  16. "features": [],
  17. "deps": {
  18. "components": [
  19. "utils_base"
  20. ]
  21. }
  22. },

        声明后,还需要让编译系统知道要把该组件编译进去,所以需要在编译构造的主入口文件中添加要编译进去的子系统。

         在vendor/hisilicon/hispark_tegasus/config.json中添加如下代码:

{ "component": "hello_world", "features":[] }

        添加完成后,重新编译,下载。

 

        可以看到,自己添加的Hello world组件,已经正常运行了。

四、新增产品

        直接修改vendor/hisilicon/hispark_pegasus/config.json文件。修改“product_name”为“hello_world_test”。完整代码如下:

  1. {
  2. "product_name": "hello_world_test",
  3. "ohos_version": "OpenHarmony 1.0",
  4. "device_company": "hisilicon",
  5. "board": "hispark_pegasus",
  6. "kernel_type": "liteos_m",
  7. "kernel_version": "",
  8. "subsystems": [
  9. {
  10. "subsystem": "applications",
  11. "components": [
  12. { "component": "hello_world", "features":[] }
  13. ]
  14. },
  15. {
  16. "subsystem": "iot_hardware",
  17. "components": [
  18. { "component": "iot_controller", "features":[] }
  19. ]
  20. },
  21. {
  22. "subsystem": "hiviewdfx",
  23. "components": [
  24. { "component": "hilog_lite", "features":[] },
  25. { "component": "hievent_lite", "features":[] }
  26. ]
  27. },
  28. {
  29. "subsystem": "distributed_schedule",
  30. "components": [
  31. { "component": "system_ability_manager", "features":[] }
  32. ]
  33. },
  34. {
  35. "subsystem": "security",
  36. "components": [
  37. { "component": "hichainsdk", "features":[] }
  38. ]
  39. },
  40. {
  41. "subsystem": "startup",
  42. "components": [
  43. { "component": "bootstrap", "features":[] },
  44. { "component": "syspara", "features":[] }
  45. ]
  46. },
  47. {
  48. "subsystem": "communication",
  49. "components": [
  50. { "component": "wlan", "features":[] },
  51. { "component": "soft_bus", "features":[] },
  52. { "component": "wifi_aware", "features":[]}
  53. ]
  54. },
  55. {
  56. "subsystem": "update",
  57. "components": [
  58. { "component": "hota", "features":[] }
  59. ]
  60. },
  61. {
  62. "subsystem": "iot",
  63. "components": [
  64. { "component": "iot_link", "features":[] }
  65. ]
  66. },
  67. {
  68. "subsystem": "utils",
  69. "components": [
  70. { "component": "file", "features":[] },
  71. { "component": "kv_store", "features":[] },
  72. { "component": "os_dump", "features":[] }
  73. ]
  74. },
  75. {
  76. "subsystem": "vendor",
  77. "components": [
  78. { "component": "hi3861_sdk", "target": "//device/hisilicon/hispark_pegasus/sdk_liteos:wifiiot_sdk", "features":[] }
  79. ]
  80. }
  81. ],
  82. "vendor_adapter_dir": "//device/hisilicon/hispark_pegasus/hi3861_adapter",
  83. "third_party_dir": "//device/hisilicon/hispark_pegasus/sdk_liteos/third_party",
  84. "product_adapter_dir": "//vendor/hisilicon/hispark_pegasus/hals",
  85. "ohos_product_type":"",
  86. "ohos_manufacture":"",
  87. "ohos_brand":"",
  88. "ohos_market_name":"",
  89. "ohos_product_series":"",
  90. "ohos_product_model":"",
  91. "ohos_software_model":"",
  92. "ohos_hardware_model":"",
  93. "ohos_hardware_profile":"",
  94. "ohos_serial":"",
  95. "ohos_bootloader_version":"",
  96. "ohos_secure_patch_level":"",
  97. "ohos_abi_list":""
  98. }

         此时,在DevEco中,即可查看到该产品。

         创建好之后,配置产品的相关配置,包括upload_portupload_partitions等。完成后,在左侧的PROJECT TASKS中也会出现“hello_world_test”的工具栏,即可进行编译和下载。

         编译下载过程这里就不再介绍。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/320109
推荐阅读
相关标签
  

闽ICP备14008679号