hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
menuconfig BR2_PACKAGE_AISERVER
    bool "rockchip aiserver"
    select BR2_PACKAGE_PROTOBUF
    select BR2_PACKAGE_ROCKIT
    select BR2_PACKAGE_DBUS
    select BR2_PACKAGE_DBUS_CPP
    select BR2_PACKAGE_LIBRKDB
    help
      rockchip aiserver
 
if BR2_PACKAGE_AISERVER
 
config BR2_PACKAGE_AISERVER_SANITIZER_DYNAMIC
    bool "enable aiserver sanitizer tools with dynamic linker"
    select BR2_PACKAGE_ADDRESS_SANITIZER
    help
      enable aiserver debug on sanitizer with dynamic linker.
 
config BR2_PACKAGE_AISERVER_SANITIZER_STATIC
    bool "enable aiserver sanitizer tools with static linker"
    select BR2_PACKAGE_ADDRESS_SANITIZER
    help
      enable aiserver debug on sanitizer with static linker.
 
config BR2_PACKAGE_AISERVER_CONIFG
    string "aiserver config"
    default "none"
 
config BR2_PACKAGE_AISERVER_RKVO
    bool "enable aiserver with rkvo"
    default n
 
config BR2_PACKAGE_AISERVER_MINILOGGER
        bool "enable miniloger print"
        select BR2_PACKAGE_MINILOGGER
        default y
        help
          rockchip aiserver options
 
config BR2_PACKAGE_AISERVER_SHM_SERVER
        bool "enable shm server"
        select BR2_PACKAGE_SHM_TOOLS
        default n
        help
          rockchip aiserver options
 
config BR2_PACKAGE_AISERVER_OSD_SERVER
        bool "enable osd server"
        select BR2_PACKAGE_FREETYPE
        default n
        help
          rockchip aiserver options
 
config BR2_PACKAGE_AISERVER_EXIV2_FEATURE
        bool "enable exiv2 feature"
        select BR2_PACKAGE_EXIV2
        default n
        help
          rockchip aiserver options
 
config BR2_PACKAGE_AISERVER_USE_ROCKX
        bool "rockx"
        select BR2_PACKAGE_RKNPU
        select BR2_PACKAGE_ROCKX
        help
          wrapped function of rockx
 
config BR2_PACKAGE_AISERVER_USE_STASTERIA
        bool "stasteria"
        select BR2_PACKAGE_RKNPU
        default n
        help
          rockchip aiserver options
endif