-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- temporarily disable wifi & bt - use kernel 4.9.46
- Loading branch information
Showing
15 changed files
with
107 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<manifest version="1.0" type="device"> | ||
<hal format="hidl"> | ||
<name>android.hardware.configstore</name> | ||
<transport>hwbinder</transport> | ||
<version>1.0</version> | ||
<interface> | ||
<name>ISurfaceFlingerConfigs</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
<hal format="hidl"> | ||
<name>android.hardware.graphics.allocator</name> | ||
<transport>hwbinder</transport> | ||
<impl level="generic"></impl> | ||
<version>2.0</version> | ||
<interface> | ||
<name>IAllocator</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
<hal format="hidl"> | ||
<name>android.hardware.graphics.mapper</name> | ||
<transport arch="32+64">passthrough</transport> | ||
<impl level="generic"></impl> | ||
<version>2.0</version> | ||
<interface> | ||
<name>IMapper</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
<hal format="hidl"> | ||
<name>android.hardware.graphics.composer</name> | ||
<transport arch="32+64">passthrough</transport> | ||
<version>2.1</version> | ||
<interface> | ||
<name>IComposer</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
<hal format="hidl"> | ||
<name>android.hardware.media.omx</name> | ||
<transport>hwbinder</transport> | ||
<version>1.0</version> | ||
<interface> | ||
<name>IOmx</name> | ||
<instance>default</instance> | ||
</interface> | ||
<interface> | ||
<name>IOmxStore</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,31 +9,45 @@ PRODUCT_MANUFACTURER := brcm | |
|
||
include frameworks/native/build/tablet-7in-hdpi-1024-dalvik-heap.mk | ||
|
||
PRODUCT_PROPERTY_OVERRIDES += \ | ||
debug.drm.mode.force=1280x720 \ | ||
ro.opengles.version=131072 \ | ||
ro.sf.lcd_density=213 \ | ||
wifi.interface=wlan0 | ||
|
||
# application packages | ||
PRODUCT_PACKAGES += \ | ||
Launcher2 \ | ||
LeanbackLauncher \ | ||
Settings \ | ||
Browser2 | ||
Settings | ||
|
||
# system packages | ||
PRODUCT_PACKAGES += \ | ||
libGLES_mesa \ | ||
gralloc.$(TARGET_PRODUCT) \ | ||
hwcomposer.$(TARGET_PRODUCT) \ | ||
audio.primary.$(TARGET_PRODUCT) \ | ||
gralloc.rpi3 \ | ||
hwcomposer.rpi3 \ | ||
audio.primary.rpi3 \ | ||
audio.usb.default \ | ||
wpa_supplicant \ | ||
wpa_supplicant.conf | ||
|
||
# hardware/interfaces | ||
PRODUCT_PACKAGES += \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] | ||
|
||
# system configurations | ||
PRODUCT_COPY_FILES := \ | ||
hardware/broadcom/wlan/bcmdhd/config/wpa_supplicant_overlay.conf:system/etc/wifi/wpa_supplicant_overlay.conf \ | ||
frameworks/native/data/etc/android.hardware.ethernet.xml:system/etc/permissions/android.hardware.ethernet.xml \ | ||
frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \ | ||
frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \ | ||
frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml \ | ||
frameworks/native/data/etc/android.hardware.bluetooth_le.xml:system/etc/permissions/android.hardware.bluetooth_le.xml \ | ||
$(LOCAL_PATH)/manifest.xml:system/vendor/manifest.xml \ | ||
$(LOCAL_PATH)/rpi3_core_hardware.xml:system/etc/permissions/rpi3_core_hardware.xml \ | ||
$(LOCAL_PATH)/init.rpi3.rc:root/init.rpi3.rc \ | ||
$(LOCAL_PATH)/init.usb.rc:root/init.usb.rc \ | ||
|
@@ -42,8 +56,6 @@ PRODUCT_COPY_FILES := \ | |
$(LOCAL_PATH)/Generic.kl:system/usr/keylayout/Generic.kl \ | ||
$(LOCAL_PATH)/firmware/brcm/brcmfmac43430-sdio.bin:root/lib/firmware/brcm/brcmfmac43430-sdio.bin \ | ||
$(LOCAL_PATH)/firmware/brcm/brcmfmac43430-sdio.txt:root/lib/firmware/brcm/brcmfmac43430-sdio.txt \ | ||
$(LOCAL_PATH)/firmware/brcm/BCM43430A1.hcd:root/lib/firmware/brcm/BCM43430A1.hcd \ | ||
$(LOCAL_PATH)/bluetooth/bt_vendor.conf:system/etc/bluetooth/bt_vendor.conf \ | ||
$(PRODUCT_COPY_FILES) | ||
|
||
# media configurations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
allow bluetooth rfkill_device:chr_file rw_file_perms; | ||
allow bluetooth self:socket create_socket_perms; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
allow hal_graphics_allocator dri_device:chr_file rw_file_perms; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/dev/ttyAMA0 0660 bluetooth net_bt_stack | ||
/dev/rfkill 0660 bluetooth net_bt_stack | ||
/dev/ttyAMA0 0660 bluetooth bluetooth | ||
/dev/rfkill 0660 bluetooth bluetooth |