mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Add list of OuiKeyedData to the Hostapd
AIDL IfaceParams type. Requires update to the latest compatibility matrix to upgrade the Hostapd HAL to V2. Bug: 296069900 Test: m Change-Id: I125937857fbc5fee0815369532e502da4c454a53
This commit is contained in:
@@ -664,7 +664,7 @@
|
||||
</hal>
|
||||
<hal format="aidl" optional="true">
|
||||
<name>android.hardware.wifi.hostapd</name>
|
||||
<version>1</version>
|
||||
<version>1-2</version>
|
||||
<interface>
|
||||
<name>IHostapd</name>
|
||||
<instance>default</instance>
|
||||
|
||||
@@ -27,6 +27,9 @@ aidl_interface {
|
||||
srcs: [
|
||||
"android/hardware/wifi/hostapd/*.aidl",
|
||||
],
|
||||
imports: [
|
||||
"android.hardware.wifi.common-V1",
|
||||
],
|
||||
stability: "vintf",
|
||||
backend: {
|
||||
java: {
|
||||
@@ -40,6 +43,9 @@ aidl_interface {
|
||||
ndk: {
|
||||
gen_trace: true,
|
||||
},
|
||||
cpp: {
|
||||
enabled: false,
|
||||
},
|
||||
},
|
||||
versions_with_info: [
|
||||
{
|
||||
@@ -47,5 +53,4 @@ aidl_interface {
|
||||
imports: [],
|
||||
},
|
||||
],
|
||||
|
||||
}
|
||||
|
||||
@@ -37,4 +37,5 @@ parcelable IfaceParams {
|
||||
String name;
|
||||
android.hardware.wifi.hostapd.HwModeParams hwModeParams;
|
||||
android.hardware.wifi.hostapd.ChannelParams[] channelParams;
|
||||
@nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
package android.hardware.wifi.hostapd;
|
||||
|
||||
import android.hardware.wifi.common.OuiKeyedData;
|
||||
import android.hardware.wifi.hostapd.ChannelParams;
|
||||
import android.hardware.wifi.hostapd.HwModeParams;
|
||||
|
||||
@@ -36,4 +37,8 @@ parcelable IfaceParams {
|
||||
* The list of the channel params for the dual interfaces.
|
||||
*/
|
||||
ChannelParams[] channelParams;
|
||||
/**
|
||||
* Optional vendor-specific configuration parameters.
|
||||
*/
|
||||
@nullable OuiKeyedData[] vendorData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user