You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Output directory, where vhal specific generated files are saved into.",
184
-
)
185
-
186
-
property_group_opt=option(
187
-
"--property-group",
188
-
type=int,
189
-
required=False,
190
-
default=1,
191
-
show_default=True,
192
-
help="""
193
-
Group of generated VHAL properties: 1 = SYSTEM, 2 = VENDOR, 3 = BACKPORTED, 4 = VSS.
194
-
See https://cs.android.com/android/platform/superproject/main/+/main:hardware/interfaces/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehiclePropertyGroup.aidl
195
-
""",
196
-
)
197
-
198
-
min_property_id_opt=option(
199
-
"--min-property-id",
200
-
type=int,
201
-
required=False,
202
-
default=1,
203
-
show_default=True,
204
-
help="Stating ID for newly generated properties. This considers only the last 2 bytes of the VHAL property ID.",
205
-
)
206
-
207
-
extend_new_opt=option(
208
-
"--extend-new/--no-extend-new",
209
-
help="""
210
-
Whether to extend the map with new VSS nodes from the spec not present in the map file or only update
211
-
existing VHAL properties and ignores all new VSS nodes.
help="Output directory, where vhal specific generated files are saved into.",
41
+
)
42
+
@click.option(
43
+
"--property-group",
44
+
type=int,
45
+
required=False,
46
+
default=1,
47
+
show_default=True,
48
+
help="""
49
+
Group of generated VHAL properties: 1 = SYSTEM, 2 = VENDOR, 3 = BACKPORTED, 4 = VSS.
50
+
See https://cs.android.com/android/platform/superproject/main/+/main:hardware/interfaces/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehiclePropertyGroup.aidl
51
+
""",
52
+
)
53
+
@click.option(
54
+
"--min-property-id",
55
+
type=int,
56
+
required=False,
57
+
default=1,
58
+
show_default=True,
59
+
help="Stating ID for newly generated properties. This considers only the last 2 bytes of the VHAL property ID.",
60
+
)
61
+
@click.option(
62
+
"--extend-new/--no-extend-new",
63
+
help="""
64
+
Whether to extend the map with new VSS nodes from the spec not present in the map file or only update
65
+
existing VHAL properties and ignores all new VSS nodes.
0 commit comments