Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85a3efe5 authored by Muhammad Qureshi's avatar Muhammad Qureshi
Browse files

Revert "Migrate IUsb implementation to AIDL"

Revert submission 16765902-IUSB_redfin

Reason for revert: DeviceBootTest failure - b/217606853
Reverted Changes:
I681c1ba9c:Migrate IUsb implementation to AIDL
Ia8c246102:android.hardware.usb.IUsb AIDL migration

Change-Id: Iab92acf73b2a26e10643d258be6d62c2f4bffa51
parent c0136b81
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -130,11 +130,8 @@ ifeq ($(wildcard vendor/google_devices/redfin/proprietary/device-vendor-redfin.m
    BUILD_WITHOUT_VENDOR := true
endif

# USB HAL
PRODUCT_PACKAGES += \
    android.hardware.usb-service.redfin
PRODUCT_PACKAGES += \
    android.hardware.usb.gadget-service.redfin
    android.hardware.usb@1.3-service.redfin

# Vibrator HAL
PRODUCT_PACKAGES += \
+9 −4
Original line number Diff line number Diff line
//
// Copyright (C) 2021 The Android Open Source Project
// Copyright (C) 2018 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -18,14 +18,19 @@ package {
}

cc_binary {
    name: "android.hardware.usb.gadget-service.redfin",
    name: "android.hardware.usb@1.3-service.redfin",
    relative_install_path: "hw",
    init_rc: ["android.hardware.usb.gadget-service.redfin.rc"],
    init_rc: ["android.hardware.usb@1.3-service.redfin.rc"],
    vintf_fragments: [
        "android.hardware.usb@1.3-service.redfin.xml",
        "android.hardware.usb.gadget@1.1-service.redfin.xml",
    ],
    srcs: ["service_gadget.cpp", "UsbGadget.cpp"],
    srcs: ["service.cpp", "Usb.cpp", "UsbGadget.cpp"],
    shared_libs: [
        "android.hardware.usb@1.0",
        "android.hardware.usb@1.1",
        "android.hardware.usb@1.2",
        "android.hardware.usb@1.3",
        "android.hardware.usb.gadget@1.0",
        "android.hardware.usb.gadget@1.1",
        "libbase",
Loading