forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
if BR2_PACKAGE_RV1108
 
# BSP packages
config BR2_PACKAGE_LOCK
   bool "rv1108 package lock"
   select BR2_PACKAGE_MESSENGER
   select BR2_PACKAGE_LIBPNG
   select BR2_PACKAGE_LIBPNG_12
   select BR2_PACKAGE_RV1108_MINIGUI
   select BR2_PACKAGE_TSLIB
   select BR2_PACKAGE_JPEG
 
if BR2_PACKAGE_LOCK
menu "lock app setting options"
 
choice
   prompt "Lock APP ui project"
   default BR2_PACKAGE_LOCK_UI_SAMPLE
   help
     Select a product type to use.
 
config BR2_PACKAGE_LOCK_UI_PROJECT1
   bool "project1"
   help
     Product Type: project1.
 
config BR2_PACKAGE_LOCK_UI_SAMPLE
   bool "sample"
   help
     Product Type: sample.
endchoice
 
config BR2_PACKAGE_LOCK_PROJECT_TYPE
   string
   default "PROJECT1"    if BR2_PACKAGE_LOCK_UI_PROJECT1
   default "SAMPLE"      if BR2_PACKAGE_LOCK_UI_SAMPLE
   help
     type: PROJECT1/SAMPLE
 
config BR2_PACKAGE_LOCK_ENABLE_SCREEN_CAPTURE
   bool "Enable screen capture"
   default n
   help
     enable the function of screen capture
 
config BR2_PACKAGE_LOCK_ENABLE_DISP_HOLD
   bool "Enable disp hold"
   default y
   help
     By application control when it can be displayed
 
endmenu
endif
 
endif