1. 30 10月, 2021 2 次提交
  2. 30 9月, 2021 1 次提交
  3. 29 9月, 2021 3 次提交
    • S
      fix(mtd): liteos-a内核需要hdf提供mtd相关操作函数 · 0578da4f
      SimonLi 提交于
      【背景】
      1. liteos-a内核drivers/mtd/multi_partition/用到了device/hisilicon下的驱动函数实
      现,这样导致三方芯片适配时,会依赖hisilicon的驱动。
      2. HDF的mtd驱动提供了这几个函数的实现,但是未暴露头文件出来。
      
      【修改方案】
      1. 在mtd_legacy_lite.h的头文件中提供这几个函数的定义。
      2. 修改BUILD.gn构建文件,将该头文件作为public_configs暴露给deps这个模块的模块
      
      【遗留问题】
      liteos-a内核与HDF mtd驱动的分界线还不明确,导致依赖关系不清楚
      
      close: #I49FKL
      Signed-off-by: NSimonLi <likailong@huawei.com>
      0578da4f
    • O
      !188 update OTA.xml · 9f6cd92c
      openharmony_ci 提交于
      Merge pull request !188 from 黄凯/OpenHarmony-3.0-LTS
      9f6cd92c
    • H
      update OTA.xml · 9dca3c62
      huangkai 提交于
      Signed-off-by: Nhuangkai <huangkai71@huawei.com>
      9dca3c62
  4. 28 9月, 2021 3 次提交
  5. 15 9月, 2021 1 次提交
  6. 14 9月, 2021 1 次提交
  7. 07 9月, 2021 1 次提交
  8. 06 9月, 2021 4 次提交
  9. 04 9月, 2021 2 次提交
  10. 03 9月, 2021 2 次提交
  11. 02 9月, 2021 4 次提交
  12. 01 9月, 2021 3 次提交
    • O
      !144 修复hcs编译路径硬编码 · 2aec3322
      openharmony_ci 提交于
      Merge pull request !144 from SimonLi/fix-hcs-config
      2aec3322
    • S
      fix(hcs): 修复hcs编译路径硬编码 · cf92e0e6
      SimonLi 提交于
      1. 将hdf依赖device的hcs文件改为device通过引用hdf的模板来实现编译,
      这样解决编译hcs配置文件路径写死的问题。
      
      2. 去除hcs目录,因为再hdf.gni中已经包含hdf_driver的模板
      
      3. 定义hdf_driver的模板,编译生成xx_hex.c和xx.hcb文件,保持跟原来
      功能不变,device中编写hcs的BUILD.gn为
      
      import("//drivers/adapter/khdf/liteos_m/hdf.gni")
      
      hdf_driver("hcs") {
        hcs_sources = [ "hdf.hcs" ]
      }
      
      close #I4892N
      Signed-off-by: NSimonLi <likailong@huawei.com>
      cf92e0e6
    • O
      !140 新增传感器霍尔驱动 · 1bd943d7
      openharmony_ci 提交于
      Merge pull request !140 from jifengfei/master
      1bd943d7
  13. 31 8月, 2021 2 次提交
  14. 30 8月, 2021 3 次提交
  15. 29 8月, 2021 1 次提交
  16. 28 8月, 2021 2 次提交
  17. 27 8月, 2021 1 次提交
  18. 26 8月, 2021 3 次提交
  19. 25 8月, 2021 1 次提交
    • C
      fix: an empty .config file under liteos_a dir will issue an make error · f171c882
      Caoruihong 提交于
      if .config file contains LOSCFG_DRIVERS_HDF=y but not contains LOSCFG_DEVICE_COMPANY
      or LOSCFG_DEVICE_COMPANY is an empty string, then make will issue and error saying:
        ...../device//drivers/lite.mk: No such file or directory
        make: *** No rule to make target '/xx/kernel/liteos_a/../../device//drivers/lite.mk'.  Stop.
      
      this commit should fix the above isssue.
      Signed-off-by: NCaoruihong <crh.cao@huawei.com>
      Change-Id: I30d6f6e91a5609fe3bbf0a73b53de271f3d3ca14
      f171c882