├── init.haswell.rc ├── hsb ├── self-extractors │ ├── PROLOGUE │ ├── intel_bpl │ │ ├── COPYRIGHT │ │ ├── staging │ │ │ └── device-partial.mk │ │ └── LICENSE │ ├── intel_mit │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ └── staging │ │ │ └── device-partial.mk │ ├── intel_obl │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ └── staging │ │ │ └── device-partial.mk │ ├── intel_oblsla │ │ ├── COPYRIGHT │ │ ├── staging │ │ │ └── device-partial.mk │ │ └── LICENSE │ ├── intel_oblumg │ │ ├── COPYRIGHT │ │ ├── staging │ │ │ └── device-partial.mk │ │ └── LICENSE │ ├── PART3 │ ├── PART1 │ ├── PART2 │ ├── intel_apache │ │ ├── COPYRIGHT │ │ ├── staging │ │ │ └── device-partial.mk │ │ └── LICENSE │ ├── root │ │ ├── BoardConfigVendor.mk │ │ └── device-vendor.mk │ ├── extract-lists.txt │ └── generate-packages.sh ├── init.recovery.rc ├── AT_Translated_Set_2_keyboard.idc ├── camera_hsb.xml ├── parameter-framework │ ├── XML │ │ ├── Structure │ │ │ └── Audio │ │ │ │ ├── AudioClass.xml │ │ │ │ └── HDAudioSubsystem.xml │ │ ├── ParameterFrameworkConfiguration.xml │ │ ├── ParameterFrameworkConfigurationNoTuning.xml │ │ └── Settings │ │ │ └── Audio │ │ │ ├── AudioConfigurableDomains.xml │ │ │ ├── hsb_routing.pfw │ │ │ └── AudioRoutingConfigurableDomains.xml │ └── AndroidBoard.mk ├── AndroidBoard.mk ├── BoardConfig.mk ├── init.rc ├── aosp_hsb.mk ├── hsb.mk ├── proprietary-blobs.txt └── vendor_owner_info.txt ├── AndroidBoard.mk ├── init.recovery.haswell.rc ├── haswell_generic ├── init.recovery.rc ├── parameter-framework │ ├── XML │ │ ├── Structure │ │ │ └── Audio │ │ │ │ ├── AudioClass.xml │ │ │ │ └── HDAudioSubsystem.xml │ │ ├── ParameterFrameworkConfiguration.xml │ │ ├── ParameterFrameworkConfigurationNoTuning.xml │ │ └── Settings │ │ │ └── Audio │ │ │ ├── AudioConfigurableDomains.xml │ │ │ ├── hsb_routing.pfw │ │ │ └── AudioRoutingConfigurableDomains.xml │ └── AndroidBoard.mk ├── AndroidBoard.mk ├── BoardConfig.mk ├── camera_haswell_generic.xml ├── init.rc └── haswell_generic.mk ├── haswell.mk ├── BoardConfig.mk ├── vendorsetup.sh ├── AndroidProducts.mk ├── thermal-conf.xml ├── media_codecs.xml └── media_profiles.xml /init.haswell.rc: -------------------------------------------------------------------------------- 1 | import init.common.rc 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/PROLOGUE: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | -------------------------------------------------------------------------------- /hsb/init.recovery.rc: -------------------------------------------------------------------------------- 1 | import init.recovery.haswell.rc 2 | -------------------------------------------------------------------------------- /AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | include device/intel/common/AndroidBoard.mk 2 | -------------------------------------------------------------------------------- /init.recovery.haswell.rc: -------------------------------------------------------------------------------- 1 | import init.recovery.common.rc 2 | -------------------------------------------------------------------------------- /haswell_generic/init.recovery.rc: -------------------------------------------------------------------------------- 1 | import init.recovery.haswell.rc 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_bpl/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # (C) Intel Corporation 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_mit/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # (C) Intel Corporation 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_obl/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # (C) Intel Corporation 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblsla/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # (C) Intel Corporation 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblumg/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # (C) Intel Corporation 2 | -------------------------------------------------------------------------------- /hsb/AT_Translated_Set_2_keyboard.idc: -------------------------------------------------------------------------------- 1 | # Mark the keyboard as external in order to be able to wake up the device 2 | # via keyboard. 3 | device.internal = 0 4 | -------------------------------------------------------------------------------- /hsb/self-extractors/PART3: -------------------------------------------------------------------------------- 1 | 2 | if test $? != 0 3 | then 4 | echo 5 | echo ERROR: Couldn\'t extract files. 1>&2 6 | exit 3 7 | else 8 | echo 9 | echo Files extracted successfully. 10 | fi 11 | exit 0 12 | 13 | -------------------------------------------------------------------------------- /hsb/camera_hsb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/Structure/Audio/AudioClass.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/Structure/Audio/AudioClass.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /hsb/self-extractors/PART1: -------------------------------------------------------------------------------- 1 | # 2 | # Usage is subject to the enclosed license agreement 3 | 4 | echo 5 | echo The license for this software will now be displayed. 6 | echo You must agree to this license before using this software. 7 | echo 8 | echo -n Press Enter to view the license 9 | read dummy 10 | echo 11 | 12 | more << __EOF__ 13 | -------------------------------------------------------------------------------- /hsb/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | # parameter-framework 2 | DEVICE_PATH := $(call my-dir) 3 | PLATFORM_PATH := $(DEVICE_PATH)/.. 4 | COMMON_PATH := $(PLATFORM_PATH)/../common 5 | 6 | include $(PLATFORM_PATH)/AndroidBoard.mk 7 | 8 | #Include device specific parameter framework settings 9 | include $(DEVICE_PATH)/parameter-framework/AndroidBoard.mk 10 | -------------------------------------------------------------------------------- /haswell_generic/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | # parameter-framework 2 | DEVICE_PATH := $(call my-dir) 3 | PLATFORM_PATH := $(DEVICE_PATH)/.. 4 | COMMON_PATH := $(PLATFORM_PATH)/../common 5 | 6 | include $(PLATFORM_PATH)/AndroidBoard.mk 7 | 8 | #Include device specific parameter framework settings 9 | include $(DEVICE_PATH)/parameter-framework/AndroidBoard.mk 10 | -------------------------------------------------------------------------------- /hsb/self-extractors/PART2: -------------------------------------------------------------------------------- 1 | __EOF__ 2 | 3 | if test $? != 0 4 | then 5 | echo ERROR: Couldn\'t display license file 1>&2 6 | exit 1 7 | fi 8 | 9 | echo 10 | 11 | echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\ 12 | read typed 13 | 14 | if test "$typed" != I\ ACCEPT 15 | then 16 | echo 17 | echo You didn\'t accept the license. Extraction aborted. 18 | exit 2 19 | fi 20 | 21 | echo 22 | 23 | -------------------------------------------------------------------------------- /haswell_generic/BoardConfig.mk: -------------------------------------------------------------------------------- 1 | include device/intel/haswell/BoardConfig.mk 2 | 3 | TARGET_USE_MOKMANAGER := true 4 | 5 | # Note, Iago installer also sets androidboot.disk via bootloader 6 | # config, if Iago not used you will need to add 7 | # androidboot.disk=pci0000:00/0000:00:1f.2 8 | BOARD_KERNEL_CMDLINE += \ 9 | androidboot.sdcard=sdb1 10 | 11 | # Pulls in additional Makefiles relevant to blob-release 12 | -include vendor/intel/haswell/BoardConfigVendor.mk 13 | -------------------------------------------------------------------------------- /haswell.mk: -------------------------------------------------------------------------------- 1 | # Superclass 2 | include device/intel/common/common.mk 3 | 4 | LOCAL_PATH := device/intel/haswell 5 | 6 | PRODUCT_COPY_FILES += \ 7 | $(LOCAL_PATH)/init.haswell.rc:root/init.haswell.rc \ 8 | $(LOCAL_PATH)/init.recovery.haswell.rc:root/init.recovery.haswell.rc \ 9 | $(LOCAL_PATH)/media_codecs.xml:system/etc/media_codecs.xml \ 10 | $(LOCAL_PATH)/media_profiles.xml:system/etc/media_profiles.xml \ 11 | $(LOCAL_PATH)/thermal-conf.xml:system/etc/thermal-daemon/thermal-conf.xml 12 | 13 | $(call inherit-mixin, cpu-arch, hsw) 14 | 15 | -------------------------------------------------------------------------------- /hsb/BoardConfig.mk: -------------------------------------------------------------------------------- 1 | include device/intel/haswell/BoardConfig.mk 2 | 3 | TARGET_USE_MOKMANAGER := true 4 | 5 | # Note, Iago installer also sets androidboot.disk via bootloader 6 | # config, if Iago not used you will need to add 7 | # androidboot.disk=pci0000:00/0000:00:1f.2 8 | BOARD_KERNEL_CMDLINE += \ 9 | androidboot.sdcard=sdb1 10 | 11 | ifeq ($(TARGET_PRODUCT),aosp_hsb) 12 | USE_INTEL_IPP := false 13 | endif 14 | 15 | # Pulls in additional Makefiles relevant to blob-release 16 | -include vendor/intel/hsb/BoardConfigVendor.mk 17 | 18 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_apache/COPYRIGHT: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 2 | -------------------------------------------------------------------------------- /haswell_generic/camera_haswell_generic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /hsb/init.rc: -------------------------------------------------------------------------------- 1 | import init.haswell.rc 2 | 3 | on boot 4 | insmod /system/lib/modules/mfd-core.ko 5 | insmod /system/lib/modules/industrialio.ko 6 | insmod /system/lib/modules/kfifo_buf.ko 7 | insmod /system/lib/modules/industrialio-triggered-buffer.ko 8 | insmod /system/lib/modules/hid-sensor-hub.ko 9 | insmod /system/lib/modules/hid-sensor-iio-common.ko 10 | insmod /system/lib/modules/hid-sensor-trigger.ko 11 | insmod /system/lib/modules/hid-sensor-accel-3d.ko 12 | insmod /system/lib/modules/hid-sensor-gyro-3d.ko 13 | insmod /system/lib/modules/hid-sensor-als.ko 14 | insmod /system/lib/modules/hid-sensor-magn-3d.ko 15 | write /proc/sys/kernel/ctrl-alt-del 0 16 | 17 | -------------------------------------------------------------------------------- /haswell_generic/init.rc: -------------------------------------------------------------------------------- 1 | import init.haswell.rc 2 | 3 | on boot 4 | insmod /system/lib/modules/mfd-core.ko 5 | insmod /system/lib/modules/industrialio.ko 6 | insmod /system/lib/modules/kfifo_buf.ko 7 | insmod /system/lib/modules/industrialio-triggered-buffer.ko 8 | insmod /system/lib/modules/hid-sensor-hub.ko 9 | insmod /system/lib/modules/hid-sensor-iio-common.ko 10 | insmod /system/lib/modules/hid-sensor-trigger.ko 11 | insmod /system/lib/modules/hid-sensor-accel-3d.ko 12 | insmod /system/lib/modules/hid-sensor-gyro-3d.ko 13 | insmod /system/lib/modules/hid-sensor-als.ko 14 | insmod /system/lib/modules/hid-sensor-magn-3d.ko 15 | write /proc/sys/kernel/ctrl-alt-del 0 16 | write /sys/module/video/parameters/brightness_switch_enabled 0 17 | -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- 1 | # Common BoardConfig options for any device that has 2 | # a Haswell SoC 3 | 4 | include device/intel/common/BoardConfig.mk 5 | 6 | TARGET_BOARD_PLATFORM := haswell 7 | 8 | ifeq ($(ANDROID_CONSOLE),usb) 9 | BOARD_CONSOLE_DEVICE := ttyUSB0,115200n8 10 | else ifeq ($(ANDROID_CONSOLE),serial) 11 | BOARD_CONSOLE_DEVICE := ttyS0,115200n8 12 | else 13 | BOARD_CONSOLE_DEVICE := tty0 14 | endif 15 | 16 | BOARD_KERNEL_CMDLINE += console=$(BOARD_CONSOLE_DEVICE) 17 | 18 | TARGET_KERNEL_SOURCE := linux/kernel-uefi 19 | TARGET_KERNEL_CONFIG := $(TARGET_KERNEL_ARCH)_bigcore_android_defconfig 20 | 21 | # Defines Intel library for GPU accelerated Renderscript: 22 | OVERRIDE_RS_DRIVER := libRSDriver_intel7.so 23 | 24 | # Allow HWC to preform a final CSC on virtual displays 25 | TARGET_FORCE_HWC_FOR_VIRTUAL_DISPLAYS := true 26 | 27 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/ParameterFrameworkConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/ParameterFrameworkConfigurationNoTuning.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/ParameterFrameworkConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/ParameterFrameworkConfigurationNoTuning.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblsla/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_oblsla/hsb/proprietary/libWVCrypto.so:system/lib/libWVCrypto.so:intel_oblsla \ 21 | 22 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_bpl/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_bpl/hsb/proprietary/msvdx_fw_mfld_DE2.0.bin:system/etc/firmware/msvdx_fw_mfld_DE2.0.bin:intel_bpl \ 21 | 22 | -------------------------------------------------------------------------------- /hsb/self-extractors/root/BoardConfigVendor.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_STEM := hsb/BoardConfigPartial.mk 16 | 17 | -include vendor/intel_apache/$(LOCAL_STEM) 18 | -include vendor/intel_bpl/$(LOCAL_STEM) 19 | -include vendor/intel_mit/$(LOCAL_STEM) 20 | -include vendor/intel_obl/$(LOCAL_STEM) 21 | -include vendor/intel_oblsla/$(LOCAL_STEM) 22 | -include vendor/intel_oblumg/$(LOCAL_STEM) 23 | 24 | -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2013 The Android Open Source Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | # This file is executed by build/envsetup.sh, and can use anything 18 | # defined in envsetup.sh. 19 | # 20 | # In particular, you can add lunch options with the add_lunch_combo 21 | # function: add_lunch_combo generic-eng 22 | 23 | add_lunch_combo haswell_generic-eng 24 | add_lunch_combo haswell_generic-userdebug 25 | add_lunch_combo haswell_generic-user 26 | 27 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_mit/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Intel Corporation 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /hsb/self-extractors/root/device-vendor.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_STEM := hsb/device-partial.mk 16 | 17 | $(call inherit-product-if-exists, vendor/intel_apache/$(LOCAL_STEM)) 18 | $(call inherit-product-if-exists, vendor/intel_bpl/$(LOCAL_STEM)) 19 | $(call inherit-product-if-exists, vendor/intel_mit/$(LOCAL_STEM)) 20 | $(call inherit-product-if-exists, vendor/intel_obl/$(LOCAL_STEM)) 21 | $(call inherit-product-if-exists, vendor/intel_oblsla/$(LOCAL_STEM)) 22 | $(call inherit-product-if-exists, vendor/intel_oblumg/$(LOCAL_STEM)) 23 | 24 | -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2013 The Android Open-Source Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | # 18 | # This file should set PRODUCT_MAKEFILES to a list of product makefiles 19 | # to expose to the build system. LOCAL_DIR will already be set to 20 | # the directory containing this file. 21 | # 22 | # This file may not rely on the value of any variable other than 23 | # LOCAL_DIR; do not use any conditionals, and do not look up the 24 | # value of any variable that isn't set in this file or in a file that 25 | # it includes. 26 | # 27 | 28 | PRODUCT_MAKEFILES := \ 29 | $(LOCAL_DIR)/hsb/hsb.mk \ 30 | $(LOCAL_DIR)/hsb/aosp_hsb.mk \ 31 | $(LOCAL_DIR)/haswell_generic/haswell_generic.mk 32 | 33 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_mit/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_mit/hsb/proprietary/libdrm_intel.so:system/lib/libdrm_intel.so:intel_mit \ 21 | vendor/intel_mit/hsb/proprietary/libdrm.so:system/lib/libdrm.so:intel_mit \ 22 | vendor/intel_mit/hsb/proprietary/libpciaccess.so:system/lib/libpciaccess.so:intel_mit \ 23 | vendor/intel_mit/hsb/proprietary/libva-android.so:system/lib/libva-android.so:intel_mit \ 24 | vendor/intel_mit/hsb/proprietary/libva.so:system/lib/libva.so:intel_mit \ 25 | vendor/intel_mit/hsb/proprietary/libva-tpi.so:system/lib/libva-tpi.so:intel_mit \ 26 | 27 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/Settings/Audio/AudioConfigurableDomains.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 63 63 19 | 20 | 21 | 87 87 22 | 23 | 24 | 87 25 | 26 | 27 | 87 87 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/Settings/Audio/AudioConfigurableDomains.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 63 63 19 | 20 | 21 | 87 87 22 | 23 | 24 | 87 25 | 26 | 27 | 87 87 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_bpl/LICENSE: -------------------------------------------------------------------------------- 1 | Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: 2 | •Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution. 3 | •Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission. 4 | •No reverse engineering, decompilation, or disassembly of this software is permitted. 5 | Limited patent license. Intel Corporation grants a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell ("Utilize") this software, but solely to the extent that any such patent is necessary to Utilize the software alone, or in combination with an operating system licensed under an approved Open Source license as listed by the Open Source Initiative at http://opensource.org/licenses. The patent license shall not apply to any other combinations which include this software. No hardware per se is licensed hereunder. 6 | 7 | DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 8 | 9 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_obl/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008-2009, Intel Corporation. All rights reserved. Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: * Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission. * No reverse engineering, decompilation, or disassembly of this software is permitted. Limited patent license. Intel Corporation grants a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell ("Utilize") this software, but solely to the extent that any such patent is necessary to Utilize the software alone, or in combination with an operating system licensed under an approved Open Source license as listed by the Open Source Initiative at http://opensource.org/licenses. The patent license shall not apply to any other combinations which include this software. No hardware per se is licensed hereunder. DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2 | -------------------------------------------------------------------------------- /hsb/aosp_hsb.mk: -------------------------------------------------------------------------------- 1 | # Superclass 2 | include device/intel/haswell/haswell.mk 3 | 4 | PRODUCT_NAME := aosp_hsb 5 | PRODUCT_DEVICE := hsb 6 | PRODUCT_MODEL := bigcore platform 7 | 8 | LOCAL_PATH := device/intel/haswell/hsb 9 | 10 | PRODUCT_COPY_FILES += \ 11 | $(LOCAL_PATH)/init.rc:root/init.$(TARGET_PRODUCT).rc \ 12 | $(LOCAL_PATH)/init.recovery.rc:root/init.recovery.$(TARGET_PRODUCT).rc \ 13 | $(LOCAL_PATH)/camera_hsb.xml:system/etc/camera_hsb.xml \ 14 | frameworks/native/data/etc/android.hardware.faketouch.xml:system/etc/permissions/android.hardware.faketouch.xml \ 15 | frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml 16 | # Releasetools extensions for updating EFI System Partition and 17 | # userfastboot (if present). Product teams will need to copy this 18 | # file and make their own changes to it if they have additional 19 | # OTA tasks; there currently can only be one of these. 20 | TARGET_RELEASETOOLS_EXTENSIONS := device/intel/common/releasetools/releasetools-generic-efi.py 21 | 22 | $(call inherit-mixin, gms, true) 23 | $(call inherit-mixin, houdini, true) 24 | $(call inherit-mixin, boot-arch, efi) 25 | $(call inherit-mixin, display-density, medium) 26 | $(call inherit-mixin, graphics, ufo) 27 | $(call inherit-mixin, ethernet, configurable) 28 | $(call inherit-mixin, storage, 1xSD_2xUSB) 29 | $(call inherit-mixin, audio, hsw_alc282) 30 | $(call inherit-mixin, power, i2c) 31 | $(call inherit-mixin, video, ufo) 32 | $(call inherit-mixin, wifi, intel-upstream) 33 | $(call inherit-mixin, liblights, intel) 34 | $(call inherit-mixin, navigationbar, true) 35 | $(call inherit-mixin, bluetooth, wp) 36 | $(call inherit-mixin, camera-usb, usb) 37 | $(call inherit-mixin, security, mei) 38 | $(call inherit-mixin, selinux, enforcing) 39 | $(call inherit-mixin, sensors, hid_sensorhub) 40 | $(call inherit-mixin, device-type, clamshell) 41 | $(call inherit-mixin, thermals, thermal-daemon) 42 | $(call inherit-mixin, miracast, none) 43 | $(call inherit-mixin, widevine, hsb) 44 | $(call inherit-mixin, sata_power, min_power) 45 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/Settings/Audio/hsb_routing.pfw: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mute & Unmute Steps 3 | ############################## 4 | 5 | supDomain: Routing.Mute 6 | # Definition of Mute and Unmute for futur use in this supDomain 7 | RoutageState Includes Flow 8 | 9 | supDomain: Codec.Playback 10 | 11 | domain: Headset 12 | conf: Unmute 13 | ALL 14 | ANY 15 | SelectedOutputDevice Includes Headset 16 | SelectedOutputDevice Includes Headphones 17 | ANY 18 | OpenedPlaybackRoutes Includes HwCodecMedia 19 | OpenedPlaybackRoutes Includes Media 20 | 21 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 22 | 23 | conf: Mute 24 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 25 | 26 | domain: IHF 27 | conf: Unmute 28 | ALL 29 | SelectedOutputDevice Includes IHF 30 | ANY 31 | OpenedPlaybackRoutes Includes HwCodecMedia 32 | OpenedPlaybackRoutes Includes Media 33 | 34 | /Audio/HDAUDIO/OUTPUT/SPEAKER/ENABLED = 1 1 35 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 36 | 37 | conf: Mute 38 | 39 | /Audio/HDAUDIO/OUTPUT/SPEAKER/ENABLED = 0 0 40 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 41 | 42 | domain: Master 43 | conf: Unmute 44 | ALL 45 | ANY 46 | SelectedOutputDevice Includes Headset 47 | SelectedOutputDevice Includes Headphones 48 | SelectedOutputDevice Includes IHF 49 | ANY 50 | OpenedPlaybackRoutes Includes HwCodecMedia 51 | OpenedPlaybackRoutes Includes Media 52 | 53 | /Audio/HDAUDIO/OUTPUT/MASTER/ENABLED = 1 54 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 55 | 56 | conf: Mute 57 | /Audio/HDAUDIO/OUTPUT/MASTER/ENABLED = 0 58 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 59 | 60 | 61 | supDomain: Codec.Capture 62 | 63 | domain: MainMic 64 | conf: Unmute 65 | ALL 66 | SelectedInputDevice Includes Main 67 | OpenedCaptureRoutes Includes HwCodecMedia 68 | 69 | /Audio/HDAUDIO/INPUT/ENABLED = 1 1 70 | 71 | conf: Mute 72 | /Audio/HDAUDIO/INPUT/ENABLED = 0 0 73 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/Settings/Audio/hsb_routing.pfw: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mute & Unmute Steps 3 | ############################## 4 | 5 | supDomain: Routing.Mute 6 | # Definition of Mute and Unmute for futur use in this supDomain 7 | RoutageState Includes Flow 8 | 9 | supDomain: Codec.Playback 10 | 11 | domain: Headset 12 | conf: Unmute 13 | ALL 14 | ANY 15 | SelectedOutputDevice Includes Headset 16 | SelectedOutputDevice Includes Headphones 17 | ANY 18 | OpenedPlaybackRoutes Includes HwCodecMedia 19 | OpenedPlaybackRoutes Includes Media 20 | 21 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 22 | 23 | conf: Mute 24 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 25 | 26 | domain: IHF 27 | conf: Unmute 28 | ALL 29 | SelectedOutputDevice Includes IHF 30 | ANY 31 | OpenedPlaybackRoutes Includes HwCodecMedia 32 | OpenedPlaybackRoutes Includes Media 33 | 34 | /Audio/HDAUDIO/OUTPUT/SPEAKER/ENABLED = 1 1 35 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 36 | 37 | conf: Mute 38 | 39 | /Audio/HDAUDIO/OUTPUT/SPEAKER/ENABLED = 0 0 40 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 41 | 42 | domain: Master 43 | conf: Unmute 44 | ALL 45 | ANY 46 | SelectedOutputDevice Includes Headset 47 | SelectedOutputDevice Includes Headphones 48 | SelectedOutputDevice Includes IHF 49 | ANY 50 | OpenedPlaybackRoutes Includes HwCodecMedia 51 | OpenedPlaybackRoutes Includes Media 52 | 53 | /Audio/HDAUDIO/OUTPUT/MASTER/ENABLED = 1 54 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 1 1 55 | 56 | conf: Mute 57 | /Audio/HDAUDIO/OUTPUT/MASTER/ENABLED = 0 58 | /Audio/HDAUDIO/OUTPUT/HEADSET/ENABLED = 0 0 59 | 60 | 61 | supDomain: Codec.Capture 62 | 63 | domain: MainMic 64 | conf: Unmute 65 | ALL 66 | SelectedInputDevice Includes Main 67 | OpenedCaptureRoutes Includes HwCodecMedia 68 | 69 | /Audio/HDAUDIO/INPUT/ENABLED = 1 1 70 | 71 | conf: Mute 72 | /Audio/HDAUDIO/INPUT/ENABLED = 0 0 73 | 74 | 75 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/Structure/Audio/HDAudioSubsystem.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/Structure/Audio/HDAudioSubsystem.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /haswell_generic/haswell_generic.mk: -------------------------------------------------------------------------------- 1 | # Superclass 2 | include device/intel/haswell/haswell.mk 3 | 4 | PRODUCT_NAME := haswell_generic 5 | PRODUCT_DEVICE := haswell_generic 6 | PRODUCT_MODEL := bigcore platform 7 | 8 | LOCAL_PATH := device/intel/haswell/haswell_generic 9 | 10 | PRODUCT_COPY_FILES += \ 11 | $(LOCAL_PATH)/init.rc:root/init.$(TARGET_PRODUCT).rc \ 12 | $(LOCAL_PATH)/init.recovery.rc:root/init.recovery.$(TARGET_PRODUCT).rc \ 13 | $(LOCAL_PATH)/camera_haswell_generic.xml:system/etc/camera_haswell_generic.xml \ 14 | frameworks/native/data/etc/android.hardware.faketouch.xml:system/etc/permissions/android.hardware.faketouch.xml \ 15 | frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \ 16 | frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \ 17 | #HSB platform supports only front facing camera. 18 | #frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml 19 | 20 | # Enable Camera Launcher app support. 21 | INTEL_USE_CAMERA_LAUNCHER := true 22 | 23 | RS_VECTORIZER_DISABLED := true 24 | 25 | # Releasetools extensions for updating EFI System Partition and 26 | # userfastboot (if present). Product teams will need to copy this 27 | # file and make their own changes to it if they have additional 28 | # OTA tasks; there currently can only be one of these. 29 | TARGET_RELEASETOOLS_EXTENSIONS := device/intel/common/releasetools/releasetools-generic-efi.py 30 | 31 | $(call inherit-mixin, boot-arch, efi) 32 | $(call inherit-mixin, display-density, tv) 33 | $(call inherit-mixin, product-aapt, tvdpi_1920X1080) 34 | $(call inherit-mixin, graphics, ufo) 35 | $(call inherit-mixin, ethernet, configurable) 36 | $(call inherit-mixin, storage, 1xSD_2xUSB) 37 | $(call inherit-mixin, audio, hsw_alc282) 38 | $(call inherit-mixin, power, i2c) 39 | $(call inherit-mixin, video, ufo) 40 | $(call inherit-mixin, wifi, intel-compat) 41 | $(call inherit-mixin, liblights, intel) 42 | $(call inherit-mixin, navigationbar, true) 43 | $(call inherit-mixin, bluetooth, bluez) 44 | $(call inherit-mixin, camera-usb, uvc) 45 | $(call inherit-mixin, security, mei) 46 | $(call inherit-mixin, selinux, enforcing) 47 | $(call inherit-mixin, sensors, hid_sensorhub) 48 | $(call inherit-mixin, device-type, clamshell) 49 | $(call inherit-mixin, thermals, thermal-daemon) 50 | $(call inherit-mixin, sata_power, min_power) 51 | -------------------------------------------------------------------------------- /hsb/hsb.mk: -------------------------------------------------------------------------------- 1 | # Superclass 2 | include device/intel/haswell/haswell.mk 3 | 4 | PRODUCT_NAME := hsb 5 | PRODUCT_DEVICE := hsb 6 | PRODUCT_MODEL := bigcore platform 7 | 8 | LOCAL_PATH := device/intel/haswell/hsb 9 | 10 | PRODUCT_COPY_FILES += \ 11 | $(LOCAL_PATH)/init.rc:root/init.$(TARGET_PRODUCT).rc \ 12 | $(LOCAL_PATH)/init.recovery.rc:root/init.recovery.$(TARGET_PRODUCT).rc \ 13 | $(LOCAL_PATH)/camera_hsb.xml:system/etc/camera_hsb.xml \ 14 | $(LOCAL_PATH)/AT_Translated_Set_2_keyboard.idc:system/usr/idc/AT_Translated_Set_2_keyboard.idc \ 15 | frameworks/native/data/etc/android.hardware.faketouch.xml:system/etc/permissions/android.hardware.faketouch.xml \ 16 | frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \ 17 | frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \ 18 | #HSB platform supports only front facing camera. 19 | #frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml 20 | 21 | # Enable Camera Launcher app support. 22 | INTEL_USE_CAMERA_LAUNCHER := true 23 | 24 | # Releasetools extensions for updating EFI System Partition and 25 | # userfastboot (if present). Product teams will need to copy this 26 | # file and make their own changes to it if they have additional 27 | # OTA tasks; there currently can only be one of these. 28 | TARGET_RELEASETOOLS_EXTENSIONS := device/intel/common/releasetools/releasetools-generic-efi.py 29 | 30 | $(call inherit-mixin, gms, true) 31 | $(call inherit-mixin, houdini, true) 32 | $(call inherit-mixin, boot-arch, efi) 33 | $(call inherit-mixin, display-density, tv) 34 | $(call inherit-mixin, product-aapt, tvdpi_1920X1080) 35 | $(call inherit-mixin, graphics, ufo) 36 | $(call inherit-mixin, ethernet, configurable) 37 | $(call inherit-mixin, storage, 1xSD_2xUSB) 38 | $(call inherit-mixin, audio, hsw_alc282) 39 | $(call inherit-mixin, power, i2c) 40 | $(call inherit-mixin, video, ufo) 41 | $(call inherit-mixin, wifi, intel-compat) 42 | $(call inherit-mixin, liblights, intel) 43 | $(call inherit-mixin, navigationbar, true) 44 | $(call inherit-mixin, bluetooth, wp) 45 | $(call inherit-mixin, camera-usb, usb) 46 | $(call inherit-mixin, security, mei) 47 | $(call inherit-mixin, selinux, enforcing) 48 | $(call inherit-mixin, sensors, hid_sensorhub) 49 | $(call inherit-mixin, device-type, clamshell) 50 | $(call inherit-mixin, thermals, thermal-daemon) 51 | $(call inherit-mixin, miracast, intel_miracast) 52 | $(call inherit-mixin, widevine, hsb) 53 | $(call inherit-mixin, sata_power, min_power) 54 | $(call inherit-mixin, libm, intel) 55 | -------------------------------------------------------------------------------- /hsb/parameter-framework/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | COMMON_PATH := $(PLATFORM_PATH)/../common 2 | include $(COMMON_PATH)/parameter-framework/AndroidBoard.mk 3 | 4 | LOCAL_PATH := $(DEVICE_PATH)/parameter-framework 5 | 6 | ################################################## 7 | 8 | include $(CLEAR_VARS) 9 | LOCAL_MODULE := parameter-framework.audio.bayleybay 10 | LOCAL_MODULE_TAGS := optional 11 | LOCAL_REQUIRED_MODULES := \ 12 | parameter-framework.audio.common \ 13 | HDAudioSubsystem.xml \ 14 | AudioClass.xml \ 15 | AudioConfigurableDomains.xml 16 | 17 | ifeq ($(TARGET_BUILD_VARIANT),eng) 18 | LOCAL_REQUIRED_MODULES += ParameterFrameworkConfiguration.xml 19 | else 20 | LOCAL_REQUIRED_MODULES += ParameterFrameworkConfigurationNoTuning.xml 21 | endif 22 | 23 | include $(BUILD_PHONY_PACKAGE) 24 | 25 | 26 | ################################################## 27 | 28 | 29 | include $(CLEAR_VARS) 30 | LOCAL_MODULE := AudioClass.xml 31 | LOCAL_MODULE_TAGS := optional 32 | LOCAL_MODULE_CLASS := ETC 33 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Audio 34 | LOCAL_SRC_FILES := XML/Structure/Audio/$(LOCAL_MODULE) 35 | include $(BUILD_PREBUILT) 36 | 37 | 38 | include $(CLEAR_VARS) 39 | LOCAL_MODULE := HDAudioSubsystem.xml 40 | LOCAL_MODULE_TAGS := optional 41 | LOCAL_MODULE_CLASS := ETC 42 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Audio 43 | LOCAL_SRC_FILES := XML/Structure/Audio/$(LOCAL_MODULE) 44 | include $(BUILD_PREBUILT) 45 | 46 | ################################################## 47 | 48 | ifeq ($(BOARD_USES_AUDIO_HAL_CONFIGURABLE),true) 49 | 50 | ## Audio Tuning + Routing 51 | 52 | include $(CLEAR_VARS) 53 | LOCAL_MODULE := AudioConfigurableDomains.xml 54 | LOCAL_SRC_FILES := XML/Settings/Audio/AudioRoutingConfigurableDomains.xml 55 | LOCAL_MODULE_TAGS := optional 56 | LOCAL_MODULE_CLASS := ETC 57 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Settings/Audio 58 | include $(BUILD_PREBUILT) 59 | 60 | else 61 | 62 | ## Audio Tuning only 63 | 64 | include $(CLEAR_VARS) 65 | LOCAL_MODULE := AudioConfigurableDomains.xml 66 | LOCAL_MODULE_TAGS := optional 67 | LOCAL_MODULE_CLASS := ETC 68 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Settings/Audio 69 | LOCAL_SRC_FILES := XML/Settings/Audio/$(LOCAL_MODULE) 70 | include $(BUILD_PREBUILT) 71 | 72 | endif 73 | 74 | ################################################## 75 | 76 | ifeq ($(TARGET_BUILD_VARIANT),eng) 77 | 78 | ### Engineering build: Tuning allowed 79 | 80 | # baylake 81 | include $(CLEAR_VARS) 82 | LOCAL_MODULE := ParameterFrameworkConfiguration.xml 83 | LOCAL_MODULE_TAGS := optional 84 | LOCAL_MODULE_CLASS := ETC 85 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework 86 | LOCAL_SRC_FILES := XML/$(LOCAL_MODULE) 87 | include $(BUILD_PREBUILT) 88 | 89 | else 90 | 91 | ### Userdebug build: NoTuning allowed 92 | 93 | 94 | # baytrail 95 | include $(CLEAR_VARS) 96 | LOCAL_MODULE := ParameterFrameworkConfigurationNoTuning.xml 97 | LOCAL_MODULE_STEM := ParameterFrameworkConfiguration.xml 98 | LOCAL_SRC_FILES := XML/ParameterFrameworkConfigurationNoTuning.xml 99 | LOCAL_MODULE_TAGS := optional 100 | LOCAL_MODULE_CLASS := ETC 101 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework 102 | include $(BUILD_PREBUILT) 103 | 104 | endif 105 | 106 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | COMMON_PATH := $(PLATFORM_PATH)/../common 2 | include $(COMMON_PATH)/parameter-framework/AndroidBoard.mk 3 | 4 | LOCAL_PATH := $(DEVICE_PATH)/parameter-framework 5 | 6 | ################################################## 7 | 8 | include $(CLEAR_VARS) 9 | LOCAL_MODULE := parameter-framework.audio.haswell_generic 10 | LOCAL_MODULE_TAGS := optional 11 | LOCAL_REQUIRED_MODULES := \ 12 | parameter-framework.audio.common \ 13 | HDAudioSubsystem.xml \ 14 | AudioClass.xml \ 15 | AudioConfigurableDomains.xml 16 | 17 | ifeq ($(TARGET_BUILD_VARIANT),eng) 18 | LOCAL_REQUIRED_MODULES += ParameterFrameworkConfiguration.xml 19 | else 20 | LOCAL_REQUIRED_MODULES += ParameterFrameworkConfigurationNoTuning.xml 21 | endif 22 | 23 | include $(BUILD_PHONY_PACKAGE) 24 | 25 | 26 | ################################################## 27 | 28 | 29 | include $(CLEAR_VARS) 30 | LOCAL_MODULE := AudioClass.xml 31 | LOCAL_MODULE_TAGS := optional 32 | LOCAL_MODULE_CLASS := ETC 33 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Audio 34 | LOCAL_SRC_FILES := XML/Structure/Audio/$(LOCAL_MODULE) 35 | include $(BUILD_PREBUILT) 36 | 37 | 38 | include $(CLEAR_VARS) 39 | LOCAL_MODULE := HDAudioSubsystem.xml 40 | LOCAL_MODULE_TAGS := optional 41 | LOCAL_MODULE_CLASS := ETC 42 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Audio 43 | LOCAL_SRC_FILES := XML/Structure/Audio/$(LOCAL_MODULE) 44 | include $(BUILD_PREBUILT) 45 | 46 | ################################################## 47 | 48 | ifeq ($(BOARD_USES_AUDIO_HAL_CONFIGURABLE),true) 49 | 50 | ## Audio Tuning + Routing 51 | 52 | include $(CLEAR_VARS) 53 | LOCAL_MODULE := AudioConfigurableDomains.xml 54 | LOCAL_SRC_FILES := XML/Settings/Audio/AudioRoutingConfigurableDomains.xml 55 | LOCAL_MODULE_TAGS := optional 56 | LOCAL_MODULE_CLASS := ETC 57 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Settings/Audio 58 | include $(BUILD_PREBUILT) 59 | 60 | else 61 | 62 | ## Audio Tuning only 63 | 64 | include $(CLEAR_VARS) 65 | LOCAL_MODULE := AudioConfigurableDomains.xml 66 | LOCAL_MODULE_TAGS := optional 67 | LOCAL_MODULE_CLASS := ETC 68 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Settings/Audio 69 | LOCAL_SRC_FILES := XML/Settings/Audio/$(LOCAL_MODULE) 70 | include $(BUILD_PREBUILT) 71 | 72 | endif 73 | 74 | ################################################## 75 | 76 | ifeq ($(TARGET_BUILD_VARIANT),eng) 77 | 78 | ### Engineering build: Tuning allowed 79 | 80 | # baylake 81 | include $(CLEAR_VARS) 82 | LOCAL_MODULE := ParameterFrameworkConfiguration.xml 83 | LOCAL_MODULE_TAGS := optional 84 | LOCAL_MODULE_CLASS := ETC 85 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework 86 | LOCAL_SRC_FILES := XML/$(LOCAL_MODULE) 87 | include $(BUILD_PREBUILT) 88 | 89 | else 90 | 91 | ### Userdebug build: NoTuning allowed 92 | 93 | 94 | # baytrail 95 | include $(CLEAR_VARS) 96 | LOCAL_MODULE := ParameterFrameworkConfigurationNoTuning.xml 97 | LOCAL_MODULE_STEM := ParameterFrameworkConfiguration.xml 98 | LOCAL_SRC_FILES := XML/ParameterFrameworkConfigurationNoTuning.xml 99 | LOCAL_MODULE_TAGS := optional 100 | LOCAL_MODULE_CLASS := ETC 101 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework 102 | include $(BUILD_PREBUILT) 103 | 104 | endif 105 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_apache/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_apache/hsb/proprietary/370710010002030d00.seq:system/etc/firmware/370710010002030d00.seq:intel_apache \ 21 | vendor/intel_apache/hsb/proprietary/370710018002030d00.seq:system/etc/firmware/370710018002030d00.seq:intel_apache \ 22 | vendor/intel_apache/hsb/proprietary/com.google.widevine.software.drm.xml:system/etc/permissions/com.google.widevine.software.drm.xml:intel_apache \ 23 | vendor/intel_apache/hsb/proprietary/audio.primary.aosp_hsb.so:system/lib/hw/audio.primary.aosp_hsb.so:intel_apache \ 24 | vendor/intel_apache/hsb/proprietary/camera.aosp_hsb.so:system/lib/hw/camera.aosp_hsb.so:intel_apache \ 25 | vendor/intel_apache/hsb/proprietary/hwcomposer.default.so:system/lib/hw/hwcomposer.default.so:intel_apache \ 26 | vendor/intel_apache/hsb/proprietary/libI420colorconvert.so:system/lib/libI420colorconvert.so:intel_apache \ 27 | vendor/intel_apache/hsb/proprietary/libOMXVideoDecoderAVCSecure.so:system/lib/libOMXVideoDecoderAVCSecure.so:intel_apache \ 28 | vendor/intel_apache/hsb/proprietary/libOMXVideoDecoderAVC.so:system/lib/libOMXVideoDecoderAVC.so:intel_apache \ 29 | vendor/intel_apache/hsb/proprietary/libOMXVideoDecoderH263.so:system/lib/libOMXVideoDecoderH263.so:intel_apache \ 30 | vendor/intel_apache/hsb/proprietary/libOMXVideoDecoderMPEG4.so:system/lib/libOMXVideoDecoderMPEG4.so:intel_apache \ 31 | vendor/intel_apache/hsb/proprietary/libOMXVideoDecoderWMV.so:system/lib/libOMXVideoDecoderWMV.so:intel_apache \ 32 | vendor/intel_apache/hsb/proprietary/libOMXVideoEncoderH263.so:system/lib/libOMXVideoEncoderH263.so:intel_apache \ 33 | vendor/intel_apache/hsb/proprietary/libOMXVideoEncoderMPEG4.so:system/lib/libOMXVideoEncoderMPEG4.so:intel_apache \ 34 | vendor/intel_apache/hsb/proprietary/libpavp.so:system/lib/libpavp.so:intel_apache \ 35 | vendor/intel_apache/hsb/proprietary/libsecvideoparser.so:system/lib/libsecvideoparser.so:intel_apache \ 36 | vendor/intel_apache/hsb/proprietary/libwrs_omxil_common.so:system/lib/libwrs_omxil_common.so:intel_apache \ 37 | vendor/intel_apache/hsb/proprietary/libwrs_omxil_core_pvwrapped.so:system/lib/libwrs_omxil_core_pvwrapped.so:intel_apache \ 38 | vendor/intel_apache/hsb/proprietary/libdrmwvmplugin.so:system/vendor/lib/drm/libdrmwvmplugin.so:intel_apache \ 39 | vendor/intel_apache/hsb/proprietary/libbt-vendor.so:system/vendor/lib/libbt-vendor.so:intel_apache \ 40 | vendor/intel_apache/hsb/proprietary/libdrmdecrypt.so:system/vendor/lib/libdrmdecrypt.so:intel_apache \ 41 | vendor/intel_apache/hsb/proprietary/libwvdrm_L1.so:system/vendor/lib/libwvdrm_L1.so:intel_apache \ 42 | vendor/intel_apache/hsb/proprietary/libwvm.so:system/vendor/lib/libwvm.so:intel_apache \ 43 | vendor/intel_apache/hsb/proprietary/libWVStreamControlAPI_L1.so:system/vendor/lib/libWVStreamControlAPI_L1.so:intel_apache \ 44 | 45 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_obl/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_obl/hsb/proprietary/coreu:system/bin/coreu:intel_obl \ 21 | vendor/intel_obl/hsb/proprietary/curd:system/bin/curd:intel_obl \ 22 | vendor/intel_obl/hsb/proprietary/hdcpd:system/bin/hdcpd:intel_obl \ 23 | vendor/intel_obl/hsb/proprietary/mediainfo:system/bin/mediainfo:intel_obl \ 24 | vendor/intel_obl/hsb/proprietary/ufo.prop:system/etc/ufo.prop:intel_obl \ 25 | vendor/intel_obl/hsb/proprietary/libGLES_intel7_5.so:system/lib/egl/libGLES_intel7_5.so:intel_obl \ 26 | vendor/intel_obl/hsb/proprietary/libGLES_intel.so:system/lib/egl/libGLES_intel.so:intel_obl \ 27 | vendor/intel_obl/hsb/proprietary/gralloc.haswell.so:system/lib/hw/gralloc.haswell.so:intel_obl \ 28 | vendor/intel_obl/hsb/proprietary/hwcomposer.haswell.so:system/lib/hw/hwcomposer.haswell.so:intel_obl \ 29 | vendor/intel_obl/hsb/proprietary/power.aosp_hsb.so:system/lib/hw/power.aosp_hsb.so:intel_obl \ 30 | vendor/intel_obl/hsb/proprietary/i965_drv_video.so:system/lib/i965_drv_video.so:intel_obl \ 31 | vendor/intel_obl/hsb/proprietary/igfxcmjit32.so:system/lib/igfxcmjit32.so:intel_obl \ 32 | vendor/intel_obl/hsb/proprietary/igfxcmrt32.so:system/lib/igfxcmrt32.so:intel_obl \ 33 | vendor/intel_obl/hsb/proprietary/lib2d.so:system/lib/lib2d.so:intel_obl \ 34 | vendor/intel_obl/hsb/proprietary/libcoreuclient.so:system/lib/libcoreuclient.so:intel_obl \ 35 | vendor/intel_obl/hsb/proprietary/libcoreuinterface.so:system/lib/libcoreuinterface.so:intel_obl \ 36 | vendor/intel_obl/hsb/proprietary/libcoreuservice.so:system/lib/libcoreuservice.so:intel_obl \ 37 | vendor/intel_obl/hsb/proprietary/libgabi++-mfx.so:system/lib/libgabi++-mfx.so:intel_obl \ 38 | vendor/intel_obl/hsb/proprietary/libgrallocclient.so:system/lib/libgrallocclient.so:intel_obl \ 39 | vendor/intel_obl/hsb/proprietary/libgrallocgmm.so:system/lib/libgrallocgmm.so:intel_obl \ 40 | vendor/intel_obl/hsb/proprietary/libgsmgr.so:system/lib/libgsmgr.so:intel_obl \ 41 | vendor/intel_obl/hsb/proprietary/libhwcservice.so:system/lib/libhwcservice.so:intel_obl \ 42 | vendor/intel_obl/hsb/proprietary/libintelmetadatabuffer.so:system/lib/libintelmetadatabuffer.so:intel_obl \ 43 | vendor/intel_obl/hsb/proprietary/libivp.so:system/lib/libivp.so:intel_obl \ 44 | vendor/intel_obl/hsb/proprietary/libjpegdec.so:system/lib/libjpegdec.so:intel_obl \ 45 | vendor/intel_obl/hsb/proprietary/libmfxhw32.so:system/lib/libmfxhw32.so:intel_obl \ 46 | vendor/intel_obl/hsb/proprietary/libmfx_omx_components_hw.so:system/lib/libmfx_omx_components_hw.so:intel_obl \ 47 | vendor/intel_obl/hsb/proprietary/libmfx_omx_core.so:system/lib/libmfx_omx_core.so:intel_obl \ 48 | vendor/intel_obl/hsb/proprietary/libmixvbp_h264secure.so:system/lib/libmixvbp_h264secure.so:intel_obl \ 49 | vendor/intel_obl/hsb/proprietary/libmixvbp_h264.so:system/lib/libmixvbp_h264.so:intel_obl \ 50 | vendor/intel_obl/hsb/proprietary/libmixvbp_mpeg4.so:system/lib/libmixvbp_mpeg4.so:intel_obl \ 51 | vendor/intel_obl/hsb/proprietary/libmixvbp.so:system/lib/libmixvbp.so:intel_obl \ 52 | vendor/intel_obl/hsb/proprietary/libmixvbp_vc1.so:system/lib/libmixvbp_vc1.so:intel_obl \ 53 | vendor/intel_obl/hsb/proprietary/libmix_videovpp.so:system/lib/libmix_videovpp.so:intel_obl \ 54 | vendor/intel_obl/hsb/proprietary/libpavpdll.so:system/lib/libpavpdll.so:intel_obl \ 55 | vendor/intel_obl/hsb/proprietary/libpcp.so:system/lib/libpcp.so:intel_obl \ 56 | vendor/intel_obl/hsb/proprietary/libstagefrighthw.so:system/lib/libstagefrighthw.so:intel_obl \ 57 | vendor/intel_obl/hsb/proprietary/libstlport-mfx.so:system/lib/libstlport-mfx.so:intel_obl \ 58 | vendor/intel_obl/hsb/proprietary/libuevent.so:system/lib/libuevent.so:intel_obl \ 59 | vendor/intel_obl/hsb/proprietary/libva_videodecoder.so:system/lib/libva_videodecoder.so:intel_obl \ 60 | vendor/intel_obl/hsb/proprietary/libva_videoencoder.so:system/lib/libva_videoencoder.so:intel_obl \ 61 | 62 | -------------------------------------------------------------------------------- /thermal-conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | Generic X86 Laptop Device 11 | * 12 | QUIET 13 | 14 | 15 | TSKN 16 | 1 17 | 18 | 19 | 20 | 21 | SKIN 22 | 23 | 24 | TSKN 25 | 44000 26 | passive 27 | SEQUENTIAL 28 | 29 | 1 30 | rapl_controller 31 | 100 32 | 16 33 | 34 | 35 | 2 36 | intel_powerclamp 37 | 100 38 | 12 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | Example Platform Name 49 | 50 | 53 | Example UUID 54 | Example Product Name 55 | QUIET 56 | 57 | 58 | 59 | example_sensor_1 60 | /some_path 61 | 0 62 | 63 | 64 | 69 | example_thermal_sysfs_sensor 70 | 71 | 1 72 | 73 | 74 | 75 | 76 | Example Zone type 77 | 78 | 79 | example_sensor_1 80 | 81 | 75000 82 | 88 | max 89 | 96 | SEQUENTIAL 97 | 98 | 1 99 | example_cooling_device 100 | 104 | 100 105 | 108 | 12 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 127 | example_cooling_device 128 | 0 129 | 10 130 | 0 131 | 50 132 | 5000 133 | > 141 | 142 | 0.001 143 | 0.0001 144 | 0.0001 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | -------------------------------------------------------------------------------- /media_codecs.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /hsb/self-extractors/extract-lists.txt: -------------------------------------------------------------------------------- 1 | intel_apache) 2 | TO_EXTRACT="\ 3 | system/etc/firmware/370710010002030d00.seq \ 4 | system/etc/firmware/370710018002030d00.seq \ 5 | system/etc/permissions/com.google.widevine.software.drm.xml \ 6 | system/lib/hw/audio.primary.aosp_hsb.so \ 7 | system/lib/hw/camera.aosp_hsb.so \ 8 | system/lib/hw/hwcomposer.default.so \ 9 | system/lib/libI420colorconvert.so \ 10 | system/lib/libOMXVideoDecoderAVCSecure.so \ 11 | system/lib/libOMXVideoDecoderAVC.so \ 12 | system/lib/libOMXVideoDecoderH263.so \ 13 | system/lib/libOMXVideoDecoderMPEG4.so \ 14 | system/lib/libOMXVideoDecoderWMV.so \ 15 | system/lib/libOMXVideoEncoderH263.so \ 16 | system/lib/libOMXVideoEncoderMPEG4.so \ 17 | system/lib/libpavp.so \ 18 | system/lib/libsecvideoparser.so \ 19 | system/lib/libwrs_omxil_common.so \ 20 | system/lib/libwrs_omxil_core_pvwrapped.so \ 21 | system/vendor/lib/drm/libdrmwvmplugin.so \ 22 | system/vendor/lib/libbt-vendor.so \ 23 | system/vendor/lib/libdrmdecrypt.so \ 24 | system/vendor/lib/libwvdrm_L1.so \ 25 | system/vendor/lib/libwvm.so \ 26 | system/vendor/lib/libWVStreamControlAPI_L1.so \ 27 | " 28 | ;; 29 | intel_bpl) 30 | TO_EXTRACT="\ 31 | system/etc/firmware/msvdx_fw_mfld_DE2.0.bin \ 32 | " 33 | ;; 34 | intel_mit) 35 | TO_EXTRACT="\ 36 | system/lib/libdrm_intel.so \ 37 | system/lib/libdrm.so \ 38 | system/lib/libpciaccess.so \ 39 | system/lib/libva-android.so \ 40 | system/lib/libva.so \ 41 | system/lib/libva-tpi.so \ 42 | " 43 | ;; 44 | intel_obl) 45 | TO_EXTRACT="\ 46 | system/bin/coreu \ 47 | system/bin/curd \ 48 | system/bin/hdcpd \ 49 | system/bin/mediainfo \ 50 | system/etc/ufo.prop \ 51 | system/lib/egl/libGLES_intel7_5.so \ 52 | system/lib/egl/libGLES_intel.so \ 53 | system/lib/hw/gralloc.haswell.so \ 54 | system/lib/hw/hwcomposer.haswell.so \ 55 | system/lib/hw/power.aosp_hsb.so \ 56 | system/lib/i965_drv_video.so \ 57 | system/lib/igfxcmjit32.so \ 58 | system/lib/igfxcmrt32.so \ 59 | system/lib/lib2d.so \ 60 | system/lib/libcoreuclient.so \ 61 | system/lib/libcoreuinterface.so \ 62 | system/lib/libcoreuservice.so \ 63 | system/lib/libgabi++-mfx.so \ 64 | system/lib/libgrallocclient.so \ 65 | system/lib/libgrallocgmm.so \ 66 | system/lib/libgsmgr.so \ 67 | system/lib/libhwcservice.so \ 68 | system/lib/libintelmetadatabuffer.so \ 69 | system/lib/libivp.so \ 70 | system/lib/libjpegdec.so \ 71 | system/lib/libmfxhw32.so \ 72 | system/lib/libmfx_omx_components_hw.so \ 73 | system/lib/libmfx_omx_core.so \ 74 | system/lib/libmixvbp_h264secure.so \ 75 | system/lib/libmixvbp_h264.so \ 76 | system/lib/libmixvbp_mpeg4.so \ 77 | system/lib/libmixvbp.so \ 78 | system/lib/libmixvbp_vc1.so \ 79 | system/lib/libmix_videovpp.so \ 80 | system/lib/libpavpdll.so \ 81 | system/lib/libpcp.so \ 82 | system/lib/libstagefrighthw.so \ 83 | system/lib/libstlport-mfx.so \ 84 | system/lib/libuevent.so \ 85 | system/lib/libva_videodecoder.so \ 86 | system/lib/libva_videoencoder.so \ 87 | " 88 | ;; 89 | intel_oblsla) 90 | TO_EXTRACT="\ 91 | system/lib/libWVCrypto.so \ 92 | " 93 | ;; 94 | intel_oblumg) 95 | TO_EXTRACT="\ 96 | system/bin/disable_houdini \ 97 | system/bin/enable_houdini \ 98 | system/bin/houdini \ 99 | system/lib/arm/check.xml \ 100 | system/lib/arm/cpuinfo \ 101 | system/lib/arm/cpuinfo.neon \ 102 | system/lib/arm/libandroidfw.so \ 103 | system/lib/arm/libandroid_runtime.so \ 104 | system/lib/arm/libandroid.so \ 105 | system/lib/arm/libaudioflinger.so \ 106 | system/lib/arm/libaudioutils.so \ 107 | system/lib/arm/libbcc.so \ 108 | system/lib/arm/libbcinfo.so \ 109 | system/lib/arm/libbinder.so \ 110 | system/lib/arm/libcamera_client.so \ 111 | system/lib/arm/libcamera_metadata.so \ 112 | system/lib/arm/libcommon_time_client.so \ 113 | system/lib/arm/libconnectivitymanager.so \ 114 | system/lib/arm/libc_orig.so \ 115 | system/lib/arm/libcorkscrew.so \ 116 | system/lib/arm/libcrypto.so \ 117 | system/lib/arm/libc.so \ 118 | system/lib/arm/libcutils.so \ 119 | system/lib/arm/libdl.so \ 120 | system/lib/arm/libdrmframework.so \ 121 | system/lib/arm/libdvm.so \ 122 | system/lib/arm/libeffects.so \ 123 | system/lib/arm/libEGL.so \ 124 | system/lib/arm/libETC1.so \ 125 | system/lib/arm/libexpat.so \ 126 | system/lib/arm/libfilterfw.so \ 127 | system/lib/arm/libfilterpack_imageproc.so \ 128 | system/lib/arm/libft2.so \ 129 | system/lib/arm/libgabi++.so \ 130 | system/lib/arm/libgccdemangle.so \ 131 | system/lib/arm/libGLESv1_CM.so \ 132 | system/lib/arm/libGLESv2.so \ 133 | system/lib/arm/libgui.so \ 134 | system/lib/arm/libhardware_legacy.so \ 135 | system/lib/arm/libhardware.so \ 136 | system/lib/arm/libharfbuzz_ng.so \ 137 | system/lib/arm/libharfbuzz.so \ 138 | system/lib/arm/libhwui.so \ 139 | system/lib/arm/libicui18n.so \ 140 | system/lib/arm/libicuuc.so \ 141 | system/lib/arm/libinput.so \ 142 | system/lib/arm/libjnigraphics.so \ 143 | system/lib/arm/libjpeg.so \ 144 | system/lib/arm/libLLVM.so \ 145 | system/lib/arm/liblog.so \ 146 | system/lib/arm/libmedia.so \ 147 | system/lib/arm/libmemtrack.so \ 148 | system/lib/arm/libm_orig.so \ 149 | system/lib/arm/libm.so \ 150 | system/lib/arm/libnativehelper.so \ 151 | system/lib/arm/libnbaio.so \ 152 | system/lib/arm/libnetutils.so \ 153 | system/lib/arm/libnfc_ndef.so \ 154 | system/lib/arm/libOpenMAXAL.so \ 155 | system/lib/arm/libOpenSLES.so \ 156 | system/lib/arm/libpixelflinger.so \ 157 | system/lib/arm/libpng.so \ 158 | system/lib/arm/libpowermanager.so \ 159 | system/lib/arm/libRScpp.so \ 160 | system/lib/arm/libRSDriver.so \ 161 | system/lib/arm/libRS.so \ 162 | system/lib/arm/libselinux.so \ 163 | system/lib/arm/libskia.so \ 164 | system/lib/arm/libsonivox.so \ 165 | system/lib/arm/libspeexresampler.so \ 166 | system/lib/arm/libsqlite.so \ 167 | system/lib/arm/libssl.so \ 168 | system/lib/arm/libstagefright_avc_common.so \ 169 | system/lib/arm/libstagefright_enc_common.so \ 170 | system/lib/arm/libstagefright_foundation.so \ 171 | system/lib/arm/libstagefright_omx.so \ 172 | system/lib/arm/libstagefright.so \ 173 | system/lib/arm/libstagefright_yuv.so \ 174 | system/lib/arm/libstdc++.so \ 175 | system/lib/arm/libstlport.so \ 176 | system/lib/arm/libsurfaceflinger.so \ 177 | system/lib/arm/libsync.so \ 178 | system/lib/arm/libui.so \ 179 | system/lib/arm/libusbhost.so \ 180 | system/lib/arm/libutils.so \ 181 | system/lib/arm/libvideoeditor_core.so \ 182 | system/lib/arm/libvideoeditor_jni.so \ 183 | system/lib/arm/libvideoeditor_osal.so \ 184 | system/lib/arm/libvideoeditorplayer.so \ 185 | system/lib/arm/libvideoeditor_videofilters.so \ 186 | system/lib/arm/libvorbisidec.so \ 187 | system/lib/arm/libwebrtc_audio_coding.so \ 188 | system/lib/arm/libwpa_client.so \ 189 | system/lib/arm/libz.so \ 190 | system/lib/arm/linker \ 191 | system/lib/libhoudini.so \ 192 | " 193 | ;; 194 | -------------------------------------------------------------------------------- /hsb/parameter-framework/XML/Settings/Audio/AudioRoutingConfigurableDomains.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 40 40 19 | 20 | 21 | 87 87 22 | 23 | 24 | 87 25 | 26 | 27 | 87 87 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 | 56 | 57 | 58 | 59 | 60 | 61 | 1 1 62 | 63 | 64 | 65 | 66 | 0 0 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 1 1 98 | 99 | 100 | 101 | 102 | 0 0 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 1 138 | 139 | 140 | 141 | 142 | 0 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 1 1 171 | 172 | 173 | 174 | 175 | 0 0 176 | 177 | 178 | 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /haswell_generic/parameter-framework/XML/Settings/Audio/AudioRoutingConfigurableDomains.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 40 40 19 | 20 | 21 | 87 87 22 | 23 | 24 | 87 25 | 26 | 27 | 87 87 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 | 56 | 57 | 58 | 59 | 60 | 61 | 1 1 62 | 63 | 64 | 65 | 66 | 0 0 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 1 1 98 | 99 | 100 | 101 | 102 | 0 0 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 1 138 | 139 | 140 | 141 | 142 | 0 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 1 1 171 | 172 | 173 | 174 | 175 | 0 0 176 | 177 | 178 | 179 | 180 | 181 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_apache/LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 13 | 14 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 15 | 16 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 17 | 18 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 19 | 20 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 21 | 22 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 23 | 24 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 25 | 26 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 27 | 28 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 29 | 30 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 31 | 32 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 33 | 34 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 35 | 36 | a.You must give any other recipients of the Work or Derivative Works a copy of this License; and 37 | 38 | 39 | b.You must cause any modified files to carry prominent notices stating that You changed the files; and 40 | 41 | 42 | c.You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 43 | 44 | 45 | d.If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 46 | You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 47 | 48 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 49 | 50 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 51 | 52 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 53 | 54 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 55 | 56 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 57 | 58 | END OF TERMS AND CONDITIONS 59 | 60 | APPENDIX: How to apply the Apache License to your work 61 | To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. 62 | 63 | Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 64 | 65 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblumg/staging/device-partial.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | # NOTE: Automatically generated by files-by-owner.sh, do not edit 16 | # 17 | 18 | # blob(s) necessary for Harris Beach hardware 19 | PRODUCT_COPY_FILES := \ 20 | vendor/intel_oblumg/hsb/proprietary/disable_houdini:system/bin/disable_houdini:intel_oblumg \ 21 | vendor/intel_oblumg/hsb/proprietary/enable_houdini:system/bin/enable_houdini:intel_oblumg \ 22 | vendor/intel_oblumg/hsb/proprietary/houdini:system/bin/houdini:intel_oblumg \ 23 | vendor/intel_oblumg/hsb/proprietary/check.xml:system/lib/arm/check.xml:intel_oblumg \ 24 | vendor/intel_oblumg/hsb/proprietary/cpuinfo:system/lib/arm/cpuinfo:intel_oblumg \ 25 | vendor/intel_oblumg/hsb/proprietary/cpuinfo.neon:system/lib/arm/cpuinfo.neon:intel_oblumg \ 26 | vendor/intel_oblumg/hsb/proprietary/libandroidfw.so:system/lib/arm/libandroidfw.so:intel_oblumg \ 27 | vendor/intel_oblumg/hsb/proprietary/libandroid_runtime.so:system/lib/arm/libandroid_runtime.so:intel_oblumg \ 28 | vendor/intel_oblumg/hsb/proprietary/libandroid.so:system/lib/arm/libandroid.so:intel_oblumg \ 29 | vendor/intel_oblumg/hsb/proprietary/libaudioflinger.so:system/lib/arm/libaudioflinger.so:intel_oblumg \ 30 | vendor/intel_oblumg/hsb/proprietary/libaudioutils.so:system/lib/arm/libaudioutils.so:intel_oblumg \ 31 | vendor/intel_oblumg/hsb/proprietary/libbcc.so:system/lib/arm/libbcc.so:intel_oblumg \ 32 | vendor/intel_oblumg/hsb/proprietary/libbcinfo.so:system/lib/arm/libbcinfo.so:intel_oblumg \ 33 | vendor/intel_oblumg/hsb/proprietary/libbinder.so:system/lib/arm/libbinder.so:intel_oblumg \ 34 | vendor/intel_oblumg/hsb/proprietary/libcamera_client.so:system/lib/arm/libcamera_client.so:intel_oblumg \ 35 | vendor/intel_oblumg/hsb/proprietary/libcamera_metadata.so:system/lib/arm/libcamera_metadata.so:intel_oblumg \ 36 | vendor/intel_oblumg/hsb/proprietary/libcommon_time_client.so:system/lib/arm/libcommon_time_client.so:intel_oblumg \ 37 | vendor/intel_oblumg/hsb/proprietary/libconnectivitymanager.so:system/lib/arm/libconnectivitymanager.so:intel_oblumg \ 38 | vendor/intel_oblumg/hsb/proprietary/libc_orig.so:system/lib/arm/libc_orig.so:intel_oblumg \ 39 | vendor/intel_oblumg/hsb/proprietary/libcorkscrew.so:system/lib/arm/libcorkscrew.so:intel_oblumg \ 40 | vendor/intel_oblumg/hsb/proprietary/libcrypto.so:system/lib/arm/libcrypto.so:intel_oblumg \ 41 | vendor/intel_oblumg/hsb/proprietary/libc.so:system/lib/arm/libc.so:intel_oblumg \ 42 | vendor/intel_oblumg/hsb/proprietary/libcutils.so:system/lib/arm/libcutils.so:intel_oblumg \ 43 | vendor/intel_oblumg/hsb/proprietary/libdl.so:system/lib/arm/libdl.so:intel_oblumg \ 44 | vendor/intel_oblumg/hsb/proprietary/libdrmframework.so:system/lib/arm/libdrmframework.so:intel_oblumg \ 45 | vendor/intel_oblumg/hsb/proprietary/libdvm.so:system/lib/arm/libdvm.so:intel_oblumg \ 46 | vendor/intel_oblumg/hsb/proprietary/libeffects.so:system/lib/arm/libeffects.so:intel_oblumg \ 47 | vendor/intel_oblumg/hsb/proprietary/libEGL.so:system/lib/arm/libEGL.so:intel_oblumg \ 48 | vendor/intel_oblumg/hsb/proprietary/libETC1.so:system/lib/arm/libETC1.so:intel_oblumg \ 49 | vendor/intel_oblumg/hsb/proprietary/libexpat.so:system/lib/arm/libexpat.so:intel_oblumg \ 50 | vendor/intel_oblumg/hsb/proprietary/libfilterfw.so:system/lib/arm/libfilterfw.so:intel_oblumg \ 51 | vendor/intel_oblumg/hsb/proprietary/libfilterpack_imageproc.so:system/lib/arm/libfilterpack_imageproc.so:intel_oblumg \ 52 | vendor/intel_oblumg/hsb/proprietary/libft2.so:system/lib/arm/libft2.so:intel_oblumg \ 53 | vendor/intel_oblumg/hsb/proprietary/libgabi++.so:system/lib/arm/libgabi++.so:intel_oblumg \ 54 | vendor/intel_oblumg/hsb/proprietary/libgccdemangle.so:system/lib/arm/libgccdemangle.so:intel_oblumg \ 55 | vendor/intel_oblumg/hsb/proprietary/libGLESv1_CM.so:system/lib/arm/libGLESv1_CM.so:intel_oblumg \ 56 | vendor/intel_oblumg/hsb/proprietary/libGLESv2.so:system/lib/arm/libGLESv2.so:intel_oblumg \ 57 | vendor/intel_oblumg/hsb/proprietary/libgui.so:system/lib/arm/libgui.so:intel_oblumg \ 58 | vendor/intel_oblumg/hsb/proprietary/libhardware_legacy.so:system/lib/arm/libhardware_legacy.so:intel_oblumg \ 59 | vendor/intel_oblumg/hsb/proprietary/libhardware.so:system/lib/arm/libhardware.so:intel_oblumg \ 60 | vendor/intel_oblumg/hsb/proprietary/libharfbuzz_ng.so:system/lib/arm/libharfbuzz_ng.so:intel_oblumg \ 61 | vendor/intel_oblumg/hsb/proprietary/libharfbuzz.so:system/lib/arm/libharfbuzz.so:intel_oblumg \ 62 | vendor/intel_oblumg/hsb/proprietary/libhwui.so:system/lib/arm/libhwui.so:intel_oblumg \ 63 | vendor/intel_oblumg/hsb/proprietary/libicui18n.so:system/lib/arm/libicui18n.so:intel_oblumg \ 64 | vendor/intel_oblumg/hsb/proprietary/libicuuc.so:system/lib/arm/libicuuc.so:intel_oblumg \ 65 | vendor/intel_oblumg/hsb/proprietary/libinput.so:system/lib/arm/libinput.so:intel_oblumg \ 66 | vendor/intel_oblumg/hsb/proprietary/libjnigraphics.so:system/lib/arm/libjnigraphics.so:intel_oblumg \ 67 | vendor/intel_oblumg/hsb/proprietary/libjpeg.so:system/lib/arm/libjpeg.so:intel_oblumg \ 68 | vendor/intel_oblumg/hsb/proprietary/libLLVM.so:system/lib/arm/libLLVM.so:intel_oblumg \ 69 | vendor/intel_oblumg/hsb/proprietary/liblog.so:system/lib/arm/liblog.so:intel_oblumg \ 70 | vendor/intel_oblumg/hsb/proprietary/libmedia.so:system/lib/arm/libmedia.so:intel_oblumg \ 71 | vendor/intel_oblumg/hsb/proprietary/libmemtrack.so:system/lib/arm/libmemtrack.so:intel_oblumg \ 72 | vendor/intel_oblumg/hsb/proprietary/libm_orig.so:system/lib/arm/libm_orig.so:intel_oblumg \ 73 | vendor/intel_oblumg/hsb/proprietary/libm.so:system/lib/arm/libm.so:intel_oblumg \ 74 | vendor/intel_oblumg/hsb/proprietary/libnativehelper.so:system/lib/arm/libnativehelper.so:intel_oblumg \ 75 | vendor/intel_oblumg/hsb/proprietary/libnbaio.so:system/lib/arm/libnbaio.so:intel_oblumg \ 76 | vendor/intel_oblumg/hsb/proprietary/libnetutils.so:system/lib/arm/libnetutils.so:intel_oblumg \ 77 | vendor/intel_oblumg/hsb/proprietary/libnfc_ndef.so:system/lib/arm/libnfc_ndef.so:intel_oblumg \ 78 | vendor/intel_oblumg/hsb/proprietary/libOpenMAXAL.so:system/lib/arm/libOpenMAXAL.so:intel_oblumg \ 79 | vendor/intel_oblumg/hsb/proprietary/libOpenSLES.so:system/lib/arm/libOpenSLES.so:intel_oblumg \ 80 | vendor/intel_oblumg/hsb/proprietary/libpixelflinger.so:system/lib/arm/libpixelflinger.so:intel_oblumg \ 81 | vendor/intel_oblumg/hsb/proprietary/libpng.so:system/lib/arm/libpng.so:intel_oblumg \ 82 | vendor/intel_oblumg/hsb/proprietary/libpowermanager.so:system/lib/arm/libpowermanager.so:intel_oblumg \ 83 | vendor/intel_oblumg/hsb/proprietary/libRScpp.so:system/lib/arm/libRScpp.so:intel_oblumg \ 84 | vendor/intel_oblumg/hsb/proprietary/libRSDriver.so:system/lib/arm/libRSDriver.so:intel_oblumg \ 85 | vendor/intel_oblumg/hsb/proprietary/libRS.so:system/lib/arm/libRS.so:intel_oblumg \ 86 | vendor/intel_oblumg/hsb/proprietary/libselinux.so:system/lib/arm/libselinux.so:intel_oblumg \ 87 | vendor/intel_oblumg/hsb/proprietary/libskia.so:system/lib/arm/libskia.so:intel_oblumg \ 88 | vendor/intel_oblumg/hsb/proprietary/libsonivox.so:system/lib/arm/libsonivox.so:intel_oblumg \ 89 | vendor/intel_oblumg/hsb/proprietary/libspeexresampler.so:system/lib/arm/libspeexresampler.so:intel_oblumg \ 90 | vendor/intel_oblumg/hsb/proprietary/libsqlite.so:system/lib/arm/libsqlite.so:intel_oblumg \ 91 | vendor/intel_oblumg/hsb/proprietary/libssl.so:system/lib/arm/libssl.so:intel_oblumg \ 92 | vendor/intel_oblumg/hsb/proprietary/libstagefright_avc_common.so:system/lib/arm/libstagefright_avc_common.so:intel_oblumg \ 93 | vendor/intel_oblumg/hsb/proprietary/libstagefright_enc_common.so:system/lib/arm/libstagefright_enc_common.so:intel_oblumg \ 94 | vendor/intel_oblumg/hsb/proprietary/libstagefright_foundation.so:system/lib/arm/libstagefright_foundation.so:intel_oblumg \ 95 | vendor/intel_oblumg/hsb/proprietary/libstagefright_omx.so:system/lib/arm/libstagefright_omx.so:intel_oblumg \ 96 | vendor/intel_oblumg/hsb/proprietary/libstagefright.so:system/lib/arm/libstagefright.so:intel_oblumg \ 97 | vendor/intel_oblumg/hsb/proprietary/libstagefright_yuv.so:system/lib/arm/libstagefright_yuv.so:intel_oblumg \ 98 | vendor/intel_oblumg/hsb/proprietary/libstdc++.so:system/lib/arm/libstdc++.so:intel_oblumg \ 99 | vendor/intel_oblumg/hsb/proprietary/libstlport.so:system/lib/arm/libstlport.so:intel_oblumg \ 100 | vendor/intel_oblumg/hsb/proprietary/libsurfaceflinger.so:system/lib/arm/libsurfaceflinger.so:intel_oblumg \ 101 | vendor/intel_oblumg/hsb/proprietary/libsync.so:system/lib/arm/libsync.so:intel_oblumg \ 102 | vendor/intel_oblumg/hsb/proprietary/libui.so:system/lib/arm/libui.so:intel_oblumg \ 103 | vendor/intel_oblumg/hsb/proprietary/libusbhost.so:system/lib/arm/libusbhost.so:intel_oblumg \ 104 | vendor/intel_oblumg/hsb/proprietary/libutils.so:system/lib/arm/libutils.so:intel_oblumg \ 105 | vendor/intel_oblumg/hsb/proprietary/libvideoeditor_core.so:system/lib/arm/libvideoeditor_core.so:intel_oblumg \ 106 | vendor/intel_oblumg/hsb/proprietary/libvideoeditor_jni.so:system/lib/arm/libvideoeditor_jni.so:intel_oblumg \ 107 | vendor/intel_oblumg/hsb/proprietary/libvideoeditor_osal.so:system/lib/arm/libvideoeditor_osal.so:intel_oblumg \ 108 | vendor/intel_oblumg/hsb/proprietary/libvideoeditorplayer.so:system/lib/arm/libvideoeditorplayer.so:intel_oblumg \ 109 | vendor/intel_oblumg/hsb/proprietary/libvideoeditor_videofilters.so:system/lib/arm/libvideoeditor_videofilters.so:intel_oblumg \ 110 | vendor/intel_oblumg/hsb/proprietary/libvorbisidec.so:system/lib/arm/libvorbisidec.so:intel_oblumg \ 111 | vendor/intel_oblumg/hsb/proprietary/libwebrtc_audio_coding.so:system/lib/arm/libwebrtc_audio_coding.so:intel_oblumg \ 112 | vendor/intel_oblumg/hsb/proprietary/libwpa_client.so:system/lib/arm/libwpa_client.so:intel_oblumg \ 113 | vendor/intel_oblumg/hsb/proprietary/libz.so:system/lib/arm/libz.so:intel_oblumg \ 114 | vendor/intel_oblumg/hsb/proprietary/linker:system/lib/arm/linker:intel_oblumg \ 115 | vendor/intel_oblumg/hsb/proprietary/libhoudini.so:system/lib/libhoudini.so:intel_oblumg \ 116 | 117 | -------------------------------------------------------------------------------- /hsb/self-extractors/generate-packages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Copyright 2012 The Android Open Source Project 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | # start klp-dev 18 | # 886418 = KRT16I 19 | # end klp-dev 20 | 21 | ZIP=aosp_hsb-ota 22 | BUILD=none 23 | 24 | ROOTDEVICE=hsb 25 | DEVICE=hsb 26 | MANUFACTURER=intel 27 | 28 | # NOTE: need to match all the cases in extract-lists.txt 29 | for COMPANY in intel_apache intel_bpl intel_mit intel_obl intel_oblsla intel_oblumg 30 | do 31 | echo Processing files from $COMPANY 32 | rm -rf tmp 33 | FILEDIR=tmp/vendor/$COMPANY/$DEVICE/proprietary 34 | mkdir -p $FILEDIR 35 | mkdir -p tmp/vendor/$MANUFACTURER/$ROOTDEVICE 36 | case $COMPANY in 37 | 38 | # SNIP - put contents of generated extract-lists.txt here 39 | 40 | intel_apache) 41 | TO_EXTRACT="\ 42 | system/etc/firmware/370710010002030d00.seq \ 43 | system/etc/firmware/370710018002030d00.seq \ 44 | system/etc/permissions/com.google.widevine.software.drm.xml \ 45 | system/lib/hw/audio.primary.aosp_hsb.so \ 46 | system/lib/hw/camera.aosp_hsb.so \ 47 | system/lib/hw/hwcomposer.default.so \ 48 | system/lib/libI420colorconvert.so \ 49 | system/lib/libOMXVideoDecoderAVCSecure.so \ 50 | system/lib/libOMXVideoDecoderAVC.so \ 51 | system/lib/libOMXVideoDecoderH263.so \ 52 | system/lib/libOMXVideoDecoderMPEG4.so \ 53 | system/lib/libOMXVideoDecoderWMV.so \ 54 | system/lib/libOMXVideoEncoderH263.so \ 55 | system/lib/libOMXVideoEncoderMPEG4.so \ 56 | system/lib/libpavp.so \ 57 | system/lib/libsecvideoparser.so \ 58 | system/lib/libwrs_omxil_common.so \ 59 | system/lib/libwrs_omxil_core_pvwrapped.so \ 60 | system/vendor/lib/drm/libdrmwvmplugin.so \ 61 | system/vendor/lib/libbt-vendor.so \ 62 | system/vendor/lib/libdrmdecrypt.so \ 63 | system/vendor/lib/libwvdrm_L1.so \ 64 | system/vendor/lib/libwvm.so \ 65 | system/vendor/lib/libWVStreamControlAPI_L1.so \ 66 | " 67 | ;; 68 | intel_bpl) 69 | TO_EXTRACT="\ 70 | system/etc/firmware/msvdx_fw_mfld_DE2.0.bin \ 71 | " 72 | ;; 73 | intel_mit) 74 | TO_EXTRACT="\ 75 | system/lib/libdrm_intel.so \ 76 | system/lib/libdrm.so \ 77 | system/lib/libpciaccess.so \ 78 | system/lib/libva-android.so \ 79 | system/lib/libva.so \ 80 | system/lib/libva-tpi.so \ 81 | " 82 | ;; 83 | intel_obl) 84 | TO_EXTRACT="\ 85 | system/bin/coreu \ 86 | system/bin/curd \ 87 | system/bin/hdcpd \ 88 | system/bin/mediainfo \ 89 | system/etc/ufo.prop \ 90 | system/lib/egl/libGLES_intel7_5.so \ 91 | system/lib/egl/libGLES_intel.so \ 92 | system/lib/hw/gralloc.haswell.so \ 93 | system/lib/hw/hwcomposer.haswell.so \ 94 | system/lib/hw/power.aosp_hsb.so \ 95 | system/lib/i965_drv_video.so \ 96 | system/lib/igfxcmjit32.so \ 97 | system/lib/igfxcmrt32.so \ 98 | system/lib/lib2d.so \ 99 | system/lib/libcoreuclient.so \ 100 | system/lib/libcoreuinterface.so \ 101 | system/lib/libcoreuservice.so \ 102 | system/lib/libgabi++-mfx.so \ 103 | system/lib/libgrallocclient.so \ 104 | system/lib/libgrallocgmm.so \ 105 | system/lib/libgsmgr.so \ 106 | system/lib/libhwcservice.so \ 107 | system/lib/libintelmetadatabuffer.so \ 108 | system/lib/libivp.so \ 109 | system/lib/libjpegdec.so \ 110 | system/lib/libmfxhw32.so \ 111 | system/lib/libmfx_omx_components_hw.so \ 112 | system/lib/libmfx_omx_core.so \ 113 | system/lib/libmixvbp_h264secure.so \ 114 | system/lib/libmixvbp_h264.so \ 115 | system/lib/libmixvbp_mpeg4.so \ 116 | system/lib/libmixvbp.so \ 117 | system/lib/libmixvbp_vc1.so \ 118 | system/lib/libmix_videovpp.so \ 119 | system/lib/libpavpdll.so \ 120 | system/lib/libpcp.so \ 121 | system/lib/libstagefrighthw.so \ 122 | system/lib/libstlport-mfx.so \ 123 | system/lib/libuevent.so \ 124 | system/lib/libva_videodecoder.so \ 125 | system/lib/libva_videoencoder.so \ 126 | " 127 | ;; 128 | intel_oblsla) 129 | TO_EXTRACT="\ 130 | system/lib/libWVCrypto.so \ 131 | " 132 | ;; 133 | intel_oblumg) 134 | TO_EXTRACT="\ 135 | system/bin/disable_houdini \ 136 | system/bin/enable_houdini \ 137 | system/bin/houdini \ 138 | system/lib/arm/check.xml \ 139 | system/lib/arm/cpuinfo \ 140 | system/lib/arm/cpuinfo.neon \ 141 | system/lib/arm/libandroidfw.so \ 142 | system/lib/arm/libandroid_runtime.so \ 143 | system/lib/arm/libandroid.so \ 144 | system/lib/arm/libaudioflinger.so \ 145 | system/lib/arm/libaudioutils.so \ 146 | system/lib/arm/libbcc.so \ 147 | system/lib/arm/libbcinfo.so \ 148 | system/lib/arm/libbinder.so \ 149 | system/lib/arm/libcamera_client.so \ 150 | system/lib/arm/libcamera_metadata.so \ 151 | system/lib/arm/libcommon_time_client.so \ 152 | system/lib/arm/libconnectivitymanager.so \ 153 | system/lib/arm/libc_orig.so \ 154 | system/lib/arm/libcorkscrew.so \ 155 | system/lib/arm/libcrypto.so \ 156 | system/lib/arm/libc.so \ 157 | system/lib/arm/libcutils.so \ 158 | system/lib/arm/libdl.so \ 159 | system/lib/arm/libdrmframework.so \ 160 | system/lib/arm/libdvm.so \ 161 | system/lib/arm/libeffects.so \ 162 | system/lib/arm/libEGL.so \ 163 | system/lib/arm/libETC1.so \ 164 | system/lib/arm/libexpat.so \ 165 | system/lib/arm/libfilterfw.so \ 166 | system/lib/arm/libfilterpack_imageproc.so \ 167 | system/lib/arm/libft2.so \ 168 | system/lib/arm/libgabi++.so \ 169 | system/lib/arm/libgccdemangle.so \ 170 | system/lib/arm/libGLESv1_CM.so \ 171 | system/lib/arm/libGLESv2.so \ 172 | system/lib/arm/libgui.so \ 173 | system/lib/arm/libhardware_legacy.so \ 174 | system/lib/arm/libhardware.so \ 175 | system/lib/arm/libharfbuzz_ng.so \ 176 | system/lib/arm/libharfbuzz.so \ 177 | system/lib/arm/libhwui.so \ 178 | system/lib/arm/libicui18n.so \ 179 | system/lib/arm/libicuuc.so \ 180 | system/lib/arm/libinput.so \ 181 | system/lib/arm/libjnigraphics.so \ 182 | system/lib/arm/libjpeg.so \ 183 | system/lib/arm/libLLVM.so \ 184 | system/lib/arm/liblog.so \ 185 | system/lib/arm/libmedia.so \ 186 | system/lib/arm/libmemtrack.so \ 187 | system/lib/arm/libm_orig.so \ 188 | system/lib/arm/libm.so \ 189 | system/lib/arm/libnativehelper.so \ 190 | system/lib/arm/libnbaio.so \ 191 | system/lib/arm/libnetutils.so \ 192 | system/lib/arm/libnfc_ndef.so \ 193 | system/lib/arm/libOpenMAXAL.so \ 194 | system/lib/arm/libOpenSLES.so \ 195 | system/lib/arm/libpixelflinger.so \ 196 | system/lib/arm/libpng.so \ 197 | system/lib/arm/libpowermanager.so \ 198 | system/lib/arm/libRScpp.so \ 199 | system/lib/arm/libRSDriver.so \ 200 | system/lib/arm/libRS.so \ 201 | system/lib/arm/libselinux.so \ 202 | system/lib/arm/libskia.so \ 203 | system/lib/arm/libsonivox.so \ 204 | system/lib/arm/libspeexresampler.so \ 205 | system/lib/arm/libsqlite.so \ 206 | system/lib/arm/libssl.so \ 207 | system/lib/arm/libstagefright_avc_common.so \ 208 | system/lib/arm/libstagefright_enc_common.so \ 209 | system/lib/arm/libstagefright_foundation.so \ 210 | system/lib/arm/libstagefright_omx.so \ 211 | system/lib/arm/libstagefright.so \ 212 | system/lib/arm/libstagefright_yuv.so \ 213 | system/lib/arm/libstdc++.so \ 214 | system/lib/arm/libstlport.so \ 215 | system/lib/arm/libsurfaceflinger.so \ 216 | system/lib/arm/libsync.so \ 217 | system/lib/arm/libui.so \ 218 | system/lib/arm/libusbhost.so \ 219 | system/lib/arm/libutils.so \ 220 | system/lib/arm/libvideoeditor_core.so \ 221 | system/lib/arm/libvideoeditor_jni.so \ 222 | system/lib/arm/libvideoeditor_osal.so \ 223 | system/lib/arm/libvideoeditorplayer.so \ 224 | system/lib/arm/libvideoeditor_videofilters.so \ 225 | system/lib/arm/libvorbisidec.so \ 226 | system/lib/arm/libwebrtc_audio_coding.so \ 227 | system/lib/arm/libwpa_client.so \ 228 | system/lib/arm/libz.so \ 229 | system/lib/arm/linker \ 230 | system/lib/libhoudini.so \ 231 | " 232 | ;; 233 | 234 | # SNIP 235 | 236 | esac 237 | echo \ \ Extracting files from OTA package 238 | for ONE_FILE in $TO_EXTRACT 239 | do 240 | echo \ \ \ \ Extracting $ONE_FILE 241 | unzip -j -o $ZIP $ONE_FILE -d $FILEDIR > /dev/null || echo \ \ \ \ Error extracting $ONE_FILE 242 | done 243 | echo \ \ Setting up $COMPANY-specific makefiles 244 | cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles 245 | echo \ \ Setting up shared makefiles 246 | cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles 247 | echo \ \ Generating self-extracting script 248 | SCRIPT=extract-$COMPANY-$DEVICE.sh 249 | cat PROLOGUE > tmp/$SCRIPT || echo \ \ \ \ Error generating script 250 | cat $COMPANY/COPYRIGHT >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 251 | cat PART1 >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 252 | cat $COMPANY/LICENSE >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 253 | cat PART2 >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 254 | echo tail -n +$(expr 2 + $(cat PROLOGUE $COMPANY/COPYRIGHT PART1 $COMPANY/LICENSE PART2 PART3 | wc -l)) \$0 \| tar zxv >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 255 | cat PART3 >> tmp/$SCRIPT || echo \ \ \ \ Error generating script 256 | (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz) 257 | chmod a+x tmp/$SCRIPT || echo \ \ \ \ Error generating script 258 | ARCHIVE=$COMPANY-$DEVICE-$BUILD-$(md5sum < tmp/$SCRIPT | cut -b -8 | tr -d \\n).tgz 259 | rm -f $ARCHIVE 260 | echo \ \ Generating final archive 261 | (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script) 262 | rm -rf tmp 263 | done 264 | -------------------------------------------------------------------------------- /hsb/proprietary-blobs.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2011 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # This file is generated by device/common/generate-blob-lists.sh - DO NOT EDIT 16 | 17 | /system/app/Books.apk 18 | /system/app/CalendarGoogle.apk 19 | /system/app/ChromeBookmarksSyncAdapter.apk 20 | /system/app/ChromeWithBrowser.apk 21 | /system/app/CloudPrint.apk 22 | /system/app/CrashReport.apk 23 | /system/app/DeskClockGoogle.apk 24 | /system/app/Drive.apk 25 | /system/app/FaceLock.apk 26 | /system/app/GalleryGoogle.apk 27 | /system/app/GenieWidget.apk 28 | /system/app/Gmail2.apk 29 | /system/app/GMS_Maps.apk 30 | /system/app/GoogleCamera.apk 31 | /system/app/GoogleContactsSyncAdapter.apk 32 | /system/app/GoogleTTS.apk 33 | /system/app/Hangouts.apk 34 | /system/app/LatinImeGoogle.apk 35 | /system/app/Magazines.apk 36 | /system/app/MediaUploader.apk 37 | /system/app/Music2.apk 38 | /system/app/PartnerBookmarksProvider.apk 39 | /system/app/PlayGames.apk 40 | /system/app/PlusOne.apk 41 | /system/app/Street.apk 42 | /system/app/TagGoogle.apk 43 | /system/app/talkback.apk 44 | /system/app/VideoEditorGoogle.apk 45 | /system/app/Videos.apk 46 | /system/app/YouTube.apk 47 | /system/bin/coreu 48 | /system/bin/crashlogd 49 | /system/bin/curd 50 | /system/bin/disable_houdini 51 | /system/bin/enable_houdini 52 | /system/bin/hdcpd 53 | /system/bin/houdini 54 | /system/bin/logconfig 55 | /system/bin/mediainfo 56 | /system/bin/pstore-clean 57 | /system/etc/firmware/370710010002030d00.seq 58 | /system/etc/firmware/370710018002030d00.seq 59 | /system/etc/firmware/msvdx_fw_mfld_DE2.0.bin 60 | /system/etc/permissions/com.google.android.maps.xml 61 | /system/etc/permissions/com.google.android.media.effects.xml 62 | /system/etc/permissions/com.google.gson.xml 63 | /system/etc/permissions/com.google.widevine.software.drm.xml 64 | /system/etc/permissions/crashparsing.xml 65 | /system/etc/ufo.prop 66 | /system/etc/updatecmds/google_generic_update.txt 67 | /system/framework/com.google.android.maps.jar 68 | /system/framework/com.google.android.media.effects.jar 69 | /system/framework/com.google.gson.jar 70 | /system/framework/crashinfo.jar 71 | /system/framework/crashparsing.jar 72 | /system/lib/arm/check.xml 73 | /system/lib/arm/cpuinfo 74 | /system/lib/arm/cpuinfo.neon 75 | /system/lib/arm/libandroid.so 76 | /system/lib/arm/libandroidfw.so 77 | /system/lib/arm/libandroid_runtime.so 78 | /system/lib/arm/libAppDataSearch.so 79 | /system/lib/arm/libaudioflinger.so 80 | /system/lib/arm/libaudioutils.so 81 | /system/lib/arm/libbcc.so 82 | /system/lib/arm/libbcinfo.so 83 | /system/lib/arm/libbinder.so 84 | /system/lib/arm/libc.so 85 | /system/lib/arm/libcamera_client.so 86 | /system/lib/arm/libcamera_metadata.so 87 | /system/lib/arm/libcommon_time_client.so 88 | /system/lib/arm/libconnectivitymanager.so 89 | /system/lib/arm/libcorkscrew.so 90 | /system/lib/arm/libcrypto.so 91 | /system/lib/arm/libcutils.so 92 | /system/lib/arm/libc_orig.so 93 | /system/lib/arm/libdl.so 94 | /system/lib/arm/libdocscanner_image-v7a 95 | /system/lib/arm/libdocsimageutils.so 96 | /system/lib/arm/libdrmframework.so 97 | /system/lib/arm/libdvm.so 98 | /system/lib/arm/libeffects.so 99 | /system/lib/arm/libEGL.so 100 | /system/lib/arm/libETC1.so 101 | /system/lib/arm/libexpat.so 102 | /system/lib/arm/libfacelock_jni.so 103 | /system/lib/arm/libfacetracker.so 104 | /system/lib/arm/libfilterframework_jni.so 105 | /system/lib/arm/libfilterfw.so 106 | /system/lib/arm/libfilterpack_facedetect.so 107 | /system/lib/arm/libfilterpack_imageproc.so 108 | /system/lib/arm/libfrsdk.so 109 | /system/lib/arm/libft2.so 110 | /system/lib/arm/libgabi++.so 111 | /system/lib/arm/libgames_rtmp_jni.so 112 | /system/lib/arm/libgcam.so 113 | /system/lib/arm/libgcam_swig_jni.so 114 | /system/lib/arm/libgccdemangle.so 115 | /system/lib/arm/libGLESv1_CM.so 116 | /system/lib/arm/libGLESv2.so 117 | /system/lib/arm/libgoogle_recognizer_jni_l.so 118 | /system/lib/arm/libgui.so 119 | /system/lib/arm/libhardware.so 120 | /system/lib/arm/libhardware_legacy.so 121 | /system/lib/arm/libharfbuzz.so 122 | /system/lib/arm/libharfbuzz_ng.so 123 | /system/lib/arm/libhwui.so 124 | /system/lib/arm/libicui18n.so 125 | /system/lib/arm/libicuuc.so 126 | /system/lib/arm/libinput.so 127 | /system/lib/arm/libjnigraphics.so 128 | /system/lib/arm/libjni_eglfence.so 129 | /system/lib/arm/libjni_filtershow_filters.so 130 | /system/lib/arm/libjni_mosaic.so 131 | /system/lib/arm/libjni_tinyplanet.so 132 | /system/lib/arm/libjni_unbundled_latinimegoogle.so 133 | /system/lib/arm/libjpeg.so 134 | /system/lib/arm/liblightcycle.so 135 | /system/lib/arm/liblinearalloc.so 136 | /system/lib/arm/libLLVM.so 137 | /system/lib/arm/liblog.so 138 | /system/lib/arm/libm.so 139 | /system/lib/arm/libmedia.so 140 | /system/lib/arm/libmemtrack.so 141 | /system/lib/arm/libmoviemaker-jni.so 142 | /system/lib/arm/libm_orig.so 143 | /system/lib/arm/libnativehelper.so 144 | /system/lib/arm/libnativehelper_compat.so 145 | /system/lib/arm/libnbaio.so 146 | /system/lib/arm/libndk1.so 147 | /system/lib/arm/libnetjni.so 148 | /system/lib/arm/libnetutils.so 149 | /system/lib/arm/libnfc_ndef.so 150 | /system/lib/arm/libOpenMAXAL.so 151 | /system/lib/arm/libOpenSLES.so 152 | /system/lib/arm/libpatts_engine_jni_api.so 153 | /system/lib/arm/libpixelflinger.so 154 | /system/lib/arm/libplus_jni_v8.so 155 | /system/lib/arm/libpng.so 156 | /system/lib/arm/libpowermanager.so 157 | /system/lib/arm/librectifier-v7a.so 158 | /system/lib/arm/librs.antblur.so 159 | /system/lib/arm/librs.antblur_constant.so 160 | /system/lib/arm/librs.antblur_drama.so 161 | /system/lib/arm/librs.drama.so 162 | /system/lib/arm/librs.film_base.so 163 | /system/lib/arm/librs.fixedframe.so 164 | /system/lib/arm/librs.grey.so 165 | /system/lib/arm/librs.image_wrapper.so 166 | /system/lib/arm/librs.retrolux.so 167 | /system/lib/arm/libRS.so 168 | /system/lib/arm/libRScpp.so 169 | /system/lib/arm/libRSDriver.so 170 | /system/lib/arm/librsjni.so 171 | /system/lib/arm/libRSSupport.so 172 | /system/lib/arm/libselinux.so 173 | /system/lib/arm/libskia.so 174 | /system/lib/arm/libsonivox.so 175 | /system/lib/arm/libspeexresampler.so 176 | /system/lib/arm/libspeexwrapper.so 177 | /system/lib/arm/libsqlite.so 178 | /system/lib/arm/libssl.so 179 | /system/lib/arm/libstagefright.so 180 | /system/lib/arm/libstagefright_avc_common.so 181 | /system/lib/arm/libstagefright_enc_common.so 182 | /system/lib/arm/libstagefright_foundation.so 183 | /system/lib/arm/libstagefright_omx.so 184 | /system/lib/arm/libstagefright_yuv.so 185 | /system/lib/arm/libstdc++.so 186 | /system/lib/arm/libstlport.so 187 | /system/lib/arm/libstlport_shared.so 188 | /system/lib/arm/libsurfaceflinger.so 189 | /system/lib/arm/libsync.so 190 | /system/lib/arm/libui.so 191 | /system/lib/arm/libusbhost.so 192 | /system/lib/arm/libutils.so 193 | /system/lib/arm/libvcdecoder_jni.so 194 | /system/lib/arm/libvideochat_jni.so 195 | /system/lib/arm/libvideoeditorplayer.so 196 | /system/lib/arm/libvideoeditor_core.so 197 | /system/lib/arm/libvideoeditor_jni.so 198 | /system/lib/arm/libvideoeditor_osal.so 199 | /system/lib/arm/libvideoeditor_videofilters.so 200 | /system/lib/arm/libvorbisidec.so 201 | /system/lib/arm/libwebp_android.so 202 | /system/lib/arm/libwebrtc_audio_coding.so 203 | /system/lib/arm/libwpa_client.so 204 | /system/lib/arm/libWVphoneAPI.so 205 | /system/lib/arm/libz.so 206 | /system/lib/arm/linker 207 | /system/lib/egl/libGLES_intel.so 208 | /system/lib/egl/libGLES_intel7_5.so 209 | /system/lib/hw/audio.primary.aosp_hsb.so 210 | /system/lib/hw/camera.aosp_hsb.so 211 | /system/lib/hw/gralloc.haswell.so 212 | /system/lib/hw/hwcomposer.default.so 213 | /system/lib/hw/hwcomposer.haswell.so 214 | /system/lib/hw/power.aosp_hsb.so 215 | /system/lib/i965_drv_video.so 216 | /system/lib/igfxcmjit32.so 217 | /system/lib/igfxcmrt32.so 218 | /system/lib/lib2d.so 219 | /system/lib/libchromeview.so 220 | /system/lib/libcoreuclient.so 221 | /system/lib/libcoreuinterface.so 222 | /system/lib/libcoreuservice.so 223 | /system/lib/libdrm.so 224 | /system/lib/libdrm_intel.so 225 | /system/lib/libgabi++-mfx.so 226 | /system/lib/libgrallocclient.so 227 | /system/lib/libgrallocgmm.so 228 | /system/lib/libgsmgr.so 229 | /system/lib/libhoudini.so 230 | /system/lib/libhwcservice.so 231 | /system/lib/libI420colorconvert.so 232 | /system/lib/libintelmetadatabuffer.so 233 | /system/lib/libivp.so 234 | /system/lib/libjpegdec.so 235 | /system/lib/libmfxhw32.so 236 | /system/lib/libmfx_omx_components_hw.so 237 | /system/lib/libmfx_omx_core.so 238 | /system/lib/libmixvbp.so 239 | /system/lib/libmixvbp_h264.so 240 | /system/lib/libmixvbp_h264secure.so 241 | /system/lib/libmixvbp_mpeg4.so 242 | /system/lib/libmixvbp_vc1.so 243 | /system/lib/libmix_videovpp.so 244 | /system/lib/libnativehelper_compat.so 245 | /system/lib/libOMXVideoDecoderAVC.so 246 | /system/lib/libOMXVideoDecoderAVCSecure.so 247 | /system/lib/libOMXVideoDecoderH263.so 248 | /system/lib/libOMXVideoDecoderMPEG4.so 249 | /system/lib/libOMXVideoDecoderWMV.so 250 | /system/lib/libOMXVideoEncoderH263.so 251 | /system/lib/libOMXVideoEncoderMPEG4.so 252 | /system/lib/libparse_stack.so 253 | /system/lib/libpavp.so 254 | /system/lib/libpavpdll.so 255 | /system/lib/libpciaccess.so 256 | /system/lib/libpcp.so 257 | /system/lib/librsjni.so 258 | /system/lib/libRSSupport.so 259 | /system/lib/libsecvideoparser.so 260 | /system/lib/libstagefrighthw.so 261 | /system/lib/libstlport-mfx.so 262 | /system/lib/libuevent.so 263 | /system/lib/libva-android.so 264 | /system/lib/libva-tpi.so 265 | /system/lib/libva.so 266 | /system/lib/libva_videodecoder.so 267 | /system/lib/libva_videoencoder.so 268 | /system/lib/libwrs_omxil_common.so 269 | /system/lib/libwrs_omxil_core_pvwrapped.so 270 | /system/lib/libWVCrypto.so 271 | /system/priv-app/ConfigUpdater.apk 272 | /system/priv-app/GmsCore.apk 273 | /system/priv-app/GoogleBackupTransport.apk 274 | /system/priv-app/GoogleFeedback.apk 275 | /system/priv-app/GoogleLoginService.apk 276 | /system/priv-app/GoogleOneTimeInitializer.apk 277 | /system/priv-app/GooglePartnerSetup.apk 278 | /system/priv-app/GoogleServicesFramework.apk 279 | /system/priv-app/Phonesky.apk 280 | /system/priv-app/SetupWizard.apk 281 | /system/priv-app/Velvet.apk 282 | /system/usr/srec/en-US/clg 283 | /system/usr/srec/en-US/commands.abnf 284 | /system/usr/srec/en-US/compile_grammar.config 285 | /system/usr/srec/en-US/contacts.abnf 286 | /system/usr/srec/en-US/c_fst 287 | /system/usr/srec/en-US/dict 288 | /system/usr/srec/en-US/dictation.config 289 | /system/usr/srec/en-US/dnn 290 | /system/usr/srec/en-US/endpointer_dictation.config 291 | /system/usr/srec/en-US/endpointer_voicesearch.config 292 | /system/usr/srec/en-US/ep_acoustic_model 293 | /system/usr/srec/en-US/g2p_fst 294 | /system/usr/srec/en-US/grammar.config 295 | /system/usr/srec/en-US/hclg_shotword 296 | /system/usr/srec/en-US/hmmlist 297 | /system/usr/srec/en-US/hmm_symbols 298 | /system/usr/srec/en-US/hotword.config 299 | /system/usr/srec/en-US/hotword_classifier 300 | /system/usr/srec/en-US/hotword_normalizer 301 | /system/usr/srec/en-US/hotword_prompt.txt 302 | /system/usr/srec/en-US/hotword_word_symbols 303 | /system/usr/srec/en-US/metadata 304 | /system/usr/srec/en-US/normalizer 305 | /system/usr/srec/en-US/norm_fst 306 | /system/usr/srec/en-US/offensive_word_normalizer 307 | /system/usr/srec/en-US/phonelist 308 | /system/usr/srec/en-US/phone_state_map 309 | /system/usr/srec/en-US/rescoring_lm 310 | /system/usr/srec/en-US/wordlist 311 | /system/vendor/lib/drm/libdrmwvmplugin.so 312 | /system/vendor/lib/libbt-vendor.so 313 | /system/vendor/lib/libdrmdecrypt.so 314 | /system/vendor/lib/libwvdrm_L1.so 315 | /system/vendor/lib/libwvm.so 316 | /system/vendor/lib/libWVStreamControlAPI_L1.so 317 | /system/vendor/media/LMspeed_508.emd 318 | /system/vendor/media/PFFprec_600.emd 319 | /system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/left_eye-y0-yi45-p0-pi45-r0-ri20.lg_32.bin 320 | /system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/nose_base-y0-yi45-p0-pi45-r0-ri20.lg_32.bin 321 | /system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/right_eye-y0-yi45-p0-pi45-r0-ri20.lg_32-2.bin 322 | /system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-r0-ri30.4a-v24.bin 323 | /system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-rn30-ri30.5-v24.bin 324 | /system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-rp30-ri30.5-v24.bin 325 | /system/vendor/pittpatt/models/recognition/face.face.y0-y0-22-b-N.bin 326 | -------------------------------------------------------------------------------- /hsb/vendor_owner_info.txt: -------------------------------------------------------------------------------- 1 | system/app/Books.apk:google 2 | system/app/CalendarGoogle.apk:google 3 | system/app/ChromeBookmarksSyncAdapter.apk:google 4 | system/app/ChromeWithBrowser.apk:google 5 | system/app/CloudPrint.apk:google 6 | system/app/CrashReport.apk:nodist 7 | system/app/DeskClockGoogle.apk:google 8 | system/app/Drive.apk:google 9 | system/app/FaceLock.apk:google 10 | system/app/GalleryGoogle.apk:google 11 | system/app/GenieWidget.apk:google 12 | system/app/Gmail2.apk:google 13 | system/app/GMS_Maps.apk:google 14 | system/app/GoogleCamera.apk:google 15 | system/app/GoogleContactsSyncAdapter.apk:google 16 | system/app/GoogleTTS.apk:google 17 | system/app/Hangouts.apk:google 18 | system/app/LatinImeGoogle.apk:google 19 | system/app/Magazines.apk:google 20 | system/app/MediaUploader.apk:google 21 | system/app/Music2.apk:google 22 | system/app/PartnerBookmarksProvider.apk:google 23 | system/app/PlayGames.apk:google 24 | system/app/PlusOne.apk:google 25 | system/app/Street.apk:google 26 | system/app/TagGoogle.apk:google 27 | system/app/talkback.apk:google 28 | system/app/VideoEditorGoogle.apk:google 29 | system/app/Videos.apk:google 30 | system/app/YouTube.apk:google 31 | system/bin/coreu:intel_obl 32 | system/bin/crashlogd:nodist 33 | system/bin/curd:intel_obl 34 | system/bin/disable_houdini:intel_oblumg 35 | system/bin/enable_houdini:intel_oblumg 36 | system/bin/hdcpd:intel_obl 37 | system/bin/houdini:intel_oblumg 38 | system/bin/logconfig:nodist 39 | system/bin/mediainfo:intel_obl 40 | system/bin/pstore-clean:nodist 41 | system/etc/firmware/370710010002030d00.seq:intel_apache 42 | system/etc/firmware/370710018002030d00.seq:intel_apache 43 | system/etc/firmware/msvdx_fw_mfld_DE2.0.bin:intel_bpl 44 | system/etc/permissions/com.google.android.maps.xml:google 45 | system/etc/permissions/com.google.android.media.effects.xml:google 46 | system/etc/permissions/com.google.gson.xml:google 47 | system/etc/permissions/com.google.widevine.software.drm.xml:intel_apache 48 | system/etc/permissions/crashparsing.xml:nodist 49 | system/etc/ufo.prop:intel_obl 50 | system/etc/updatecmds/google_generic_update.txt:google 51 | system/framework/com.google.android.maps.jar:google 52 | system/framework/com.google.android.media.effects.jar:google 53 | system/framework/com.google.gson.jar:google 54 | system/framework/crashinfo.jar:nodist 55 | system/framework/crashparsing.jar:nodist 56 | system/lib/arm/check.xml:intel_oblumg 57 | system/lib/arm/cpuinfo:intel_oblumg 58 | system/lib/arm/cpuinfo.neon:intel_oblumg 59 | system/lib/arm/libandroidfw.so:intel_oblumg 60 | system/lib/arm/libandroid_runtime.so:intel_oblumg 61 | system/lib/arm/libandroid.so:intel_oblumg 62 | system/lib/arm/libAppDataSearch.so:google 63 | system/lib/arm/libaudioflinger.so:intel_oblumg 64 | system/lib/arm/libaudioutils.so:intel_oblumg 65 | system/lib/arm/libbcc.so:intel_oblumg 66 | system/lib/arm/libbcinfo.so:intel_oblumg 67 | system/lib/arm/libbinder.so:intel_oblumg 68 | system/lib/arm/libcamera_client.so:intel_oblumg 69 | system/lib/arm/libcamera_metadata.so:intel_oblumg 70 | system/lib/arm/libcommon_time_client.so:intel_oblumg 71 | system/lib/arm/libconnectivitymanager.so:intel_oblumg 72 | system/lib/arm/libc_orig.so:intel_oblumg 73 | system/lib/arm/libcorkscrew.so:intel_oblumg 74 | system/lib/arm/libcrypto.so:intel_oblumg 75 | system/lib/arm/libc.so:intel_oblumg 76 | system/lib/arm/libcutils.so:intel_oblumg 77 | system/lib/arm/libdl.so:intel_oblumg 78 | system/lib/arm/libdocscanner_image-v7a:google 79 | system/lib/arm/libdocsimageutils.so:google 80 | system/lib/arm/libdrmframework.so:intel_oblumg 81 | system/lib/arm/libdvm.so:intel_oblumg 82 | system/lib/arm/libeffects.so:intel_oblumg 83 | system/lib/arm/libEGL.so:intel_oblumg 84 | system/lib/arm/libETC1.so:intel_oblumg 85 | system/lib/arm/libexpat.so:intel_oblumg 86 | system/lib/arm/libfacelock_jni.so:google 87 | system/lib/arm/libfacetracker.so:google 88 | system/lib/arm/libfilterframework_jni.so:google 89 | system/lib/arm/libfilterfw.so:intel_oblumg 90 | system/lib/arm/libfilterpack_facedetect.so:google 91 | system/lib/arm/libfilterpack_imageproc.so:intel_oblumg 92 | system/lib/arm/libfrsdk.so:google 93 | system/lib/arm/libft2.so:intel_oblumg 94 | system/lib/arm/libgabi++.so:intel_oblumg 95 | system/lib/arm/libgames_rtmp_jni.so:google 96 | system/lib/arm/libgcam.so:google 97 | system/lib/arm/libgcam_swig_jni.so:google 98 | system/lib/arm/libgccdemangle.so:intel_oblumg 99 | system/lib/arm/libGLESv1_CM.so:intel_oblumg 100 | system/lib/arm/libGLESv2.so:intel_oblumg 101 | system/lib/arm/libgoogle_recognizer_jni_l.so:google 102 | system/lib/arm/libgui.so:intel_oblumg 103 | system/lib/arm/libhardware_legacy.so:intel_oblumg 104 | system/lib/arm/libhardware.so:intel_oblumg 105 | system/lib/arm/libharfbuzz_ng.so:intel_oblumg 106 | system/lib/arm/libharfbuzz.so:intel_oblumg 107 | system/lib/arm/libhwui.so:intel_oblumg 108 | system/lib/arm/libicui18n.so:intel_oblumg 109 | system/lib/arm/libicuuc.so:intel_oblumg 110 | system/lib/arm/libinput.so:intel_oblumg 111 | system/lib/arm/libjni_eglfence.so:google 112 | system/lib/arm/libjni_filtershow_filters.so:google 113 | system/lib/arm/libjnigraphics.so:intel_oblumg 114 | system/lib/arm/libjni_mosaic.so:google 115 | system/lib/arm/libjni_tinyplanet.so:google 116 | system/lib/arm/libjni_unbundled_latinimegoogle.so:google 117 | system/lib/arm/libjpeg.so:intel_oblumg 118 | system/lib/arm/liblightcycle.so:google 119 | system/lib/arm/liblinearalloc.so:google 120 | system/lib/arm/libLLVM.so:intel_oblumg 121 | system/lib/arm/liblog.so:intel_oblumg 122 | system/lib/arm/libmedia.so:intel_oblumg 123 | system/lib/arm/libmemtrack.so:intel_oblumg 124 | system/lib/arm/libm_orig.so:intel_oblumg 125 | system/lib/arm/libmoviemaker-jni.so:google 126 | system/lib/arm/libm.so:intel_oblumg 127 | system/lib/arm/libnativehelper_compat.so:google 128 | system/lib/arm/libnativehelper.so:intel_oblumg 129 | system/lib/arm/libnbaio.so:intel_oblumg 130 | system/lib/arm/libndk1.so:google 131 | system/lib/arm/libnetjni.so:google 132 | system/lib/arm/libnetutils.so:intel_oblumg 133 | system/lib/arm/libnfc_ndef.so:intel_oblumg 134 | system/lib/arm/libOpenMAXAL.so:intel_oblumg 135 | system/lib/arm/libOpenSLES.so:intel_oblumg 136 | system/lib/arm/libpatts_engine_jni_api.so:google 137 | system/lib/arm/libpixelflinger.so:intel_oblumg 138 | system/lib/arm/libplus_jni_v8.so:google 139 | system/lib/arm/libpng.so:intel_oblumg 140 | system/lib/arm/libpowermanager.so:intel_oblumg 141 | system/lib/arm/librectifier-v7a.so:google 142 | system/lib/arm/librs.antblur_constant.so:google 143 | system/lib/arm/librs.antblur_drama.so:google 144 | system/lib/arm/librs.antblur.so:google 145 | system/lib/arm/libRScpp.so:intel_oblumg 146 | system/lib/arm/librs.drama.so:google 147 | system/lib/arm/libRSDriver.so:intel_oblumg 148 | system/lib/arm/librs.film_base.so:google 149 | system/lib/arm/librs.fixedframe.so:google 150 | system/lib/arm/librs.grey.so:google 151 | system/lib/arm/librs.image_wrapper.so:google 152 | system/lib/arm/librsjni.so:google 153 | system/lib/arm/librs.retrolux.so:google 154 | system/lib/arm/libRS.so:intel_oblumg 155 | system/lib/arm/libRSSupport.so:google 156 | system/lib/arm/libselinux.so:intel_oblumg 157 | system/lib/arm/libskia.so:intel_oblumg 158 | system/lib/arm/libsonivox.so:intel_oblumg 159 | system/lib/arm/libspeexresampler.so:intel_oblumg 160 | system/lib/arm/libspeexwrapper.so:google 161 | system/lib/arm/libsqlite.so:intel_oblumg 162 | system/lib/arm/libssl.so:intel_oblumg 163 | system/lib/arm/libstagefright_avc_common.so:intel_oblumg 164 | system/lib/arm/libstagefright_enc_common.so:intel_oblumg 165 | system/lib/arm/libstagefright_foundation.so:intel_oblumg 166 | system/lib/arm/libstagefright_omx.so:intel_oblumg 167 | system/lib/arm/libstagefright.so:intel_oblumg 168 | system/lib/arm/libstagefright_yuv.so:intel_oblumg 169 | system/lib/arm/libstdc++.so:intel_oblumg 170 | system/lib/arm/libstlport_shared.so:google 171 | system/lib/arm/libstlport.so:intel_oblumg 172 | system/lib/arm/libsurfaceflinger.so:intel_oblumg 173 | system/lib/arm/libsync.so:intel_oblumg 174 | system/lib/arm/libui.so:intel_oblumg 175 | system/lib/arm/libusbhost.so:intel_oblumg 176 | system/lib/arm/libutils.so:intel_oblumg 177 | system/lib/arm/libvcdecoder_jni.so:google 178 | system/lib/arm/libvideochat_jni.so:google 179 | system/lib/arm/libvideoeditor_core.so:intel_oblumg 180 | system/lib/arm/libvideoeditor_jni.so:intel_oblumg 181 | system/lib/arm/libvideoeditor_osal.so:intel_oblumg 182 | system/lib/arm/libvideoeditorplayer.so:intel_oblumg 183 | system/lib/arm/libvideoeditor_videofilters.so:intel_oblumg 184 | system/lib/arm/libvorbisidec.so:intel_oblumg 185 | system/lib/arm/libwebp_android.so:google 186 | system/lib/arm/libwebrtc_audio_coding.so:intel_oblumg 187 | system/lib/arm/libwpa_client.so:intel_oblumg 188 | system/lib/arm/libWVphoneAPI.so:google 189 | system/lib/arm/libz.so:intel_oblumg 190 | system/lib/arm/linker:intel_oblumg 191 | system/lib/egl/libGLES_intel7_5.so:intel_obl 192 | system/lib/egl/libGLES_intel.so:intel_obl 193 | system/lib/hw/audio.primary.aosp_hsb.so:intel_apache 194 | system/lib/hw/camera.aosp_hsb.so:intel_apache 195 | system/lib/hw/gralloc.haswell.so:intel_obl 196 | system/lib/hw/hwcomposer.default.so:intel_apache 197 | system/lib/hw/hwcomposer.haswell.so:intel_obl 198 | system/lib/hw/power.aosp_hsb.so:intel_obl 199 | system/lib/i965_drv_video.so:intel_obl 200 | system/lib/igfxcmjit32.so:intel_obl 201 | system/lib/igfxcmrt32.so:intel_obl 202 | system/lib/lib2d.so:intel_obl 203 | system/lib/libchromeview.so:google 204 | system/lib/libcoreuclient.so:intel_obl 205 | system/lib/libcoreuinterface.so:intel_obl 206 | system/lib/libcoreuservice.so:intel_obl 207 | system/lib/libdrm_intel.so:intel_mit 208 | system/lib/libdrm.so:intel_mit 209 | system/lib/libgabi++-mfx.so:intel_obl 210 | system/lib/libgrallocclient.so:intel_obl 211 | system/lib/libgrallocgmm.so:intel_obl 212 | system/lib/libgsmgr.so:intel_obl 213 | system/lib/libhoudini.so:intel_oblumg 214 | system/lib/libhwcservice.so:intel_obl 215 | system/lib/libI420colorconvert.so:intel_apache 216 | system/lib/libintelmetadatabuffer.so:intel_obl 217 | system/lib/libivp.so:intel_obl 218 | system/lib/libjpegdec.so:intel_obl 219 | system/lib/libmfxhw32.so:intel_obl 220 | system/lib/libmfx_omx_components_hw.so:intel_obl 221 | system/lib/libmfx_omx_core.so:intel_obl 222 | system/lib/libmixvbp_h264secure.so:intel_obl 223 | system/lib/libmixvbp_h264.so:intel_obl 224 | system/lib/libmixvbp_mpeg4.so:intel_obl 225 | system/lib/libmixvbp.so:intel_obl 226 | system/lib/libmixvbp_vc1.so:intel_obl 227 | system/lib/libmix_videovpp.so:intel_obl 228 | system/lib/libnativehelper_compat.so:google 229 | system/lib/libOMXVideoDecoderAVCSecure.so:intel_apache 230 | system/lib/libOMXVideoDecoderAVC.so:intel_apache 231 | system/lib/libOMXVideoDecoderH263.so:intel_apache 232 | system/lib/libOMXVideoDecoderMPEG4.so:intel_apache 233 | system/lib/libOMXVideoDecoderWMV.so:intel_apache 234 | system/lib/libOMXVideoEncoderH263.so:intel_apache 235 | system/lib/libOMXVideoEncoderMPEG4.so:intel_apache 236 | system/lib/libparse_stack.so:nodist 237 | system/lib/libpavpdll.so:intel_obl 238 | system/lib/libpavp.so:intel_apache 239 | system/lib/libpciaccess.so:intel_mit 240 | system/lib/libpcp.so:intel_obl 241 | system/lib/librsjni.so:google 242 | system/lib/libRSSupport.so:google 243 | system/lib/libsecvideoparser.so:intel_apache 244 | system/lib/libstagefrighthw.so:intel_obl 245 | system/lib/libstlport-mfx.so:intel_obl 246 | system/lib/libuevent.so:intel_obl 247 | system/lib/libva-android.so:intel_mit 248 | system/lib/libva.so:intel_mit 249 | system/lib/libva-tpi.so:intel_mit 250 | system/lib/libva_videodecoder.so:intel_obl 251 | system/lib/libva_videoencoder.so:intel_obl 252 | system/lib/libwrs_omxil_common.so:intel_apache 253 | system/lib/libwrs_omxil_core_pvwrapped.so:intel_apache 254 | system/lib/libWVCrypto.so:intel_oblsla 255 | system/priv-app/ConfigUpdater.apk:google 256 | system/priv-app/GmsCore.apk:google 257 | system/priv-app/GoogleBackupTransport.apk:google 258 | system/priv-app/GoogleFeedback.apk:google 259 | system/priv-app/GoogleLoginService.apk:google 260 | system/priv-app/GoogleOneTimeInitializer.apk:google 261 | system/priv-app/GooglePartnerSetup.apk:google 262 | system/priv-app/GoogleServicesFramework.apk:google 263 | system/priv-app/Phonesky.apk:google 264 | system/priv-app/SetupWizard.apk:google 265 | system/priv-app/Velvet.apk:google 266 | system/usr/srec/en-US/c_fst:google 267 | system/usr/srec/en-US/clg:google 268 | system/usr/srec/en-US/commands.abnf:google 269 | system/usr/srec/en-US/compile_grammar.config:google 270 | system/usr/srec/en-US/contacts.abnf:google 271 | system/usr/srec/en-US/dictation.config:google 272 | system/usr/srec/en-US/dict:google 273 | system/usr/srec/en-US/dnn:google 274 | system/usr/srec/en-US/endpointer_dictation.config:google 275 | system/usr/srec/en-US/endpointer_voicesearch.config:google 276 | system/usr/srec/en-US/ep_acoustic_model:google 277 | system/usr/srec/en-US/g2p_fst:google 278 | system/usr/srec/en-US/grammar.config:google 279 | system/usr/srec/en-US/hclg_shotword:google 280 | system/usr/srec/en-US/hmmlist:google 281 | system/usr/srec/en-US/hmm_symbols:google 282 | system/usr/srec/en-US/hotword_classifier:google 283 | system/usr/srec/en-US/hotword.config:google 284 | system/usr/srec/en-US/hotword_normalizer:google 285 | system/usr/srec/en-US/hotword_prompt.txt:google 286 | system/usr/srec/en-US/hotword_word_symbols:google 287 | system/usr/srec/en-US/metadata:google 288 | system/usr/srec/en-US/normalizer:google 289 | system/usr/srec/en-US/norm_fst:google 290 | system/usr/srec/en-US/offensive_word_normalizer:google 291 | system/usr/srec/en-US/phonelist:google 292 | system/usr/srec/en-US/phone_state_map:google 293 | system/usr/srec/en-US/rescoring_lm:google 294 | system/usr/srec/en-US/wordlist:google 295 | system/vendor/lib/drm/libdrmwvmplugin.so:intel_apache 296 | system/vendor/lib/libbt-vendor.so:intel_apache 297 | system/vendor/lib/libdrmdecrypt.so:intel_apache 298 | system/vendor/lib/libwvdrm_L1.so:intel_apache 299 | system/vendor/lib/libwvm.so:intel_apache 300 | system/vendor/lib/libWVStreamControlAPI_L1.so:intel_apache 301 | system/vendor/media/LMspeed_508.emd:google 302 | system/vendor/media/PFFprec_600.emd:google 303 | system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/left_eye-y0-yi45-p0-pi45-r0-ri20.lg_32.bin:google 304 | system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/nose_base-y0-yi45-p0-pi45-r0-ri20.lg_32.bin:google 305 | system/vendor/pittpatt/models/detection/multi_pose_face_landmark_detectors.7/right_eye-y0-yi45-p0-pi45-r0-ri20.lg_32-2.bin:google 306 | system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-r0-ri30.4a-v24.bin:google 307 | system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-rn30-ri30.5-v24.bin:google 308 | system/vendor/pittpatt/models/detection/yaw_roll_face_detectors.6/head-y0-yi45-p0-pi45-rp30-ri30.5-v24.bin:google 309 | system/vendor/pittpatt/models/recognition/face.face.y0-y0-22-b-N.bin:google 310 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblumg/LICENSE: -------------------------------------------------------------------------------- 1 | INTEL SOFTWARE LICENSE AGREEMENT (OEM / IHV / ISV Distribution & Single User) IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. Do not use or load software from this site or any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. Please Also Note: • If you are an Original Equipment Manufacturer (OEM), Independent Hardware Vendor (IHV) or Independent Software Vendor (ISV), this complete LICENSE AGREEMENT applies; • If you are an End-User, then only Exhibit A, the INTEL SOFTWARE LICENSE AGREEMENT, applies. For OEMs, IHVs and ISVs: LICENSE. Subject to the terms of this Agreement, Intel grants to You a nonexclusive, nontransferable, worldwide, fully paid-up license under Intel's copyrights to: • use and copy Software internally for Your own development and maintenance purposes; and • copy and distribute Software to Your end-users, but only under a license agreement with terms at least as restrictive as those contained in Intel's Final, Single User License Agreement, attached as Exhibit A; and • copy and distribute the end-user documentation which may accompany the Software, but only in association with the Software. If You are not the final manufacturer or vendor of a computer system or software program incorporating the Software, then You may transfer a copy of the Software (and related end-user documentation) to Your recipient for use in accordance with the terms of this Agreement, provided such recipient agrees to be fully bound by the terms hereof. You shall not otherwise assign, sublicense, lease, or in any other way transfer or disclose Software to any third party. You shall not reverse- compile, disassemble or otherwise reverse-engineer the Software. You may not subject the Software, in whole or in part, to any license obligations of Open Source Software including without limitation combining or distributing the Software with Open Source Software in a manner that subjects the Software or any portion of the Software provided by Intel hereunder to any license obligations of such Open Source Software. "Open Source Software" means any software that requires as a condition of use, modification and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL). NO OTHER RIGHTS. The Software is protected by the intellectual property laws of the United States and other countries, and international treaty provisions. Except as otherwise expressly above, Intel grants no express or implied rights under Intel patents, copyrights, trademarks, or other intellectual property rights. Except as expressly stated in this Agreement, no license or right is granted to You directly or by implication, inducement, estoppel or otherwise. Intel shall have the right to inspect or have an independent auditor inspect Your relevant records to verify Your compliance with the terms and conditions of this Agreement. CONFIDENTIALITY. If You wish to have a third party consultant or subcontractor ("Contractor") perform work on Your behalf which involves access to or use of Software, You shall obtain a written confidentiality agreement from the Contractor which contains terms and obligations with respect to access to or use of Software no less restrictive than those set forth in this Agreement and excluding any distribution rights, and use for any other purpose. Otherwise, You shall not disclose the terms or existence of this Agreement or use Intel's Name in any publications, advertisements, or other announcements without Intel's prior written consent. You do not have any rights to use any Intel trademarks or logos. OWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software remains with Intel or its suppliers. The Software is copyrighted and protected by the laws of the United States and other countries, and international treaty provisions. You may not remove any copyright notices from the Software. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support or update the Software. Except as otherwise expressly provided, Intel grants no express or implied right under Intel patents, copyrights, trademarks, or other intellectual property rights. You may transfer the Software only if the recipient agrees to be fully bound by these terms and if you retain no copies of the Software. SUPPORT. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support, update or provide training for the Software. Intel may in its sole discretion offer such services under separate terms at Intel’s then-current rates. You may request additional information on Intel’s service offerings from an Intel sales representative. You agree to be solely responsible to Your End Users for any update or support obligation or other liability which may arise from the distribution of the Software. EXCLUSION OF OTHER WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does not warrant or assume responsibility for the accuracy or completeness of any information, text, graphics, links or other items contained within the Software. LIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION. THE SOFTWARE LICENSED HEREUNDER IS NOT DESIGNED OR INTENDED FOR USE IN ANY MEDICAL, LIFE SAVING OR LIFE SUSTAINING SYSTEMS, TRANSPORTATION SYSTEMS, NUCLEAR SYSTEMS, OR FOR ANY OTHER MISSION CRITICAL APPLICATION IN WHICH THE FAILURE OF THE SOFTWARE COULD LEAD TO PERSONAL INJURY OR DEATH. YOU SHALL INDEMNIFY AND HOLD INTEL AND THE INTEL PARTIES HARMLESS AGAINST ALL CLAIMS, COSTS, DAMAGES, AND EXPENSES, AND REASONABLE ATTORNEY FEES ARISING OUT OF, DIRECTLY OR INDIRECTLY, THE DISTRIBUTION OF THE SOFTWARE AND ANY CLAIM OF PRODUCT LIABILITY, PERSONAL INJURY OR DEATH ASSOCIATED WITH ANY UNINTENDED USE, EVEN IF SUCH CLAIM ALLEGES THAT AN INTEL PARTY WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE. THE LIMITED REMEDIES, WARRANTY DISCLAIMER AND LIMITED LIABILITY ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN INTEL AND YOU. INTEL WOULD NOT BE ABLE TO PROVIDE THE SOFTWARE WITHOUT SUCH LIMITATIONS. TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement immediately, upon notice from Intel, if You violate its terms. Upon termination, You will immediately destroy the Software (including providing certification of such destruction back to Intel) or return all copies of the Software to Intel. In the event of termination of this Agreement, all licenses granted to You hereunder shall immediately terminate, except for licenses that you have previously distributed to Your end-users pursuant to the license grant above. APPLICABLE LAWS. Any claims arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. Each Party hereby agrees to jurisdiction and venue in the courts of the State of California for all disputes and litigation arising under or relating to this Agreement. The Parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The Parties consent to the personal jurisdiction of the above courts. Export Regulations / Export Control. You shall not export, either directly or indirectly, any product, service or technical data or system incorporating such items without first obtaining any required license or other approval from the U. S. Department of Commerce or any other agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by You, You shall ensure that the distribution and export/re-export or import of the product is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. You agree that neither you nor any of your subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. GOVERNMENT RESTRICTED RIGHTS. The Software is a "commercial item" as that term is defined in 48 C.F.R. 2.101, consisting of "commercial computer software" and "commercial computer software documentation" as such terms are used in 48 C.F.R. 12.212. Consistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1 through 227.7202-4, You will provide the Software to the U.S. Government as an End User only pursuant to the terms and conditions therein. Contractor or Manufacturer is Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA 95052. Assignment. You may not delegate, assign or transfer this Agreement, the license(s) granted or any of Your rights or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether You are the surviving entity) or acquisition, or otherwise and any attempt to do so, without Intel’s express prior written consent, shall be null and void. Intel may assign this Agreement, and its rights and obligations hereunder, in its sole discretion. Entire Agreement. The terms and conditions of this Agreement constitutes the entire agreement between the parties with respect to the subject matter hereof, and merges and supersedes all prior, contemporaneous agreements, understandings, negotiations and discussions. Neither of the parties hereto shall be bound by any conditions, definitions, warranties, understandings or representations with respect to the subject matter hereof other than as expressly provided for herein. Intel is not obligated under any other agreements unless they are in writing and signed by an authorized representative of Intel. Without limiting the foregoing, terms and conditions on any purchase orders or similar materials submitted by You to Intel, and any terms contained in Intel’s standard acknowledgment form that are in conflict with these terms, shall be of no force or effect. Attorneys’ Fees. In the event any proceeding or lawsuit is brought by Intel or You in connection with this Agreement, the prevailing party in such proceeding shall be entitled to receive its costs, expert witness fees and reasonable attorneys’ fees, including costs and fees on appeal. No Agency. Nothing contained herein shall be construed as creating any agency, employment relationship, partnership, principal-agent or other form of joint enterprise between the parties. Severability. In the event that any provision of this Agreement shall be unenforceable or invalid under any applicable law or be so held by applicable court decision, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions. Waiver. The failure of either party to require performance by the other party of any provision hereof shall not affect the full right to require such performance at any time thereafter; nor shall the waiver by either party of a breach of any provision hereof be taken or held to be a waiver of the provision itself. Language. This Agreement is in the English language only, which language shall be controlling in all respects, and all versions of this Agreement in any other language shall be for accommodation only and shall not be binding on you or Intel. All communications and notices made or given pursuant to this Agreement, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. EXHIBIT “A” INTEL SOFTWARE LICENSE AGREEMENT (Final, Single User) IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. Do not use or load software from this site or any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. LICENSE. You may copy the Software onto a single computer for your personal, or internal business purpose use, and you may make one back-up copy of the Software, subject to these conditions: • You may not copy, modify, rent, sell, distribute or transfer any part of the Software except as provided in this Agreement, and you agree to prevent unauthorized copying of the Software. • You may not reverse engineer, decompile, or disassemble the Software. • You may not sublicense or permit simultaneous use of the Software by more than one user. • The Software may contain the software or other property of third party suppliers, some of which may be identified in, and licensed in accordance with, any enclosed “license.txt” file or other text or file. OWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software remains with Intel or its suppliers. The Software is copyrighted and protected by the laws of the United States and other countries, and international treaty provisions. You may not remove any copyright notices from the Software. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support or update the Software. Except as otherwise expressly provided, Intel grants no express or implied right under Intel patents, copyrights, trademarks, or other intellectual property rights. You may transfer the Software only if the recipient agrees to be fully bound by these terms and if you retain no copies of the Software. EXCLUSION OF OTHER WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does not warrant or assume responsibility for the accuracy or completeness of any information, text, graphics, links or other items contained within the Software. LIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION. TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at any time if you violate its terms. Upon termination, you will immediately destroy the Software or return all copies of the Software to Intel. APPLICABLE LAWS. Claims arising under this Agreement shall be governed by the laws of Delaware, excluding its principles of conflict of laws and the United Nations Convention on Contracts for the Sale of Goods. You may not export the Software in violation of applicable export laws and regulations. Intel is not obligated under any other agreements unless they are in writing and signed by an authorized representative of Intel. GOVERNMENT RESTRICTED RIGHTS. The Software is provided with "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government is subject to restrictions as set forth in FAR52.227-14 and DFAR252.227-7013 et seq. or its successor. Use of the Software by the Government constitutes acknowledgment of Intel's proprietary rights therein. Contractor or Manufacturer is Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA 95052. 2 | -------------------------------------------------------------------------------- /hsb/self-extractors/intel_oblsla/LICENSE: -------------------------------------------------------------------------------- 1 | INTEL SOFTWARE LICENSE AGREEMENT (OEM / IHV / ISV Distribution & Single User) 2 | 3 | IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. 4 | 5 | Do not use or load software from this site or any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. 6 | 7 | Please Also Note: 8 | 9 | · If you are an Original Equipment Manufacturer (OEM), Independent Hardware Vendor (IHV) or Independent Software Vendor (ISV), this complete LICENSE AGREEMENT applies; 10 | 11 | · If you are an End-User, then only Exhibit A, the INTEL SOFTWARE LICENSE AGREEMENT, applies. 12 | 13 | For OEMs, IHVs and ISVs: 14 | 15 | LICENSE. Subject to the terms of this Agreement, Intel grants to You a nonexclusive, nontransferable, worldwide, fully paid-up license under Intel's copyrights to: 16 | 17 | · use and copy Software internally for Your own development and maintenance purposes; and 18 | 19 | · copy and distribute Software to Your end-users, but only under a license agreement with terms at least as restrictive as those contained in Intel's Final, Single User License Agreement, attached as Exhibit A; and 20 | 21 | · copy and distribute the end-user documentation which may accompany the Software, but only in association with the Software. 22 | 23 | If You are not the final manufacturer or vendor of a computer system or software program incorporating the Software, then You may transfer a copy of the Software (and related end-user documentation) to Your recipient for use in accordance with the terms of this Agreement, provided such recipient agrees to be fully bound by the terms hereof. You shall not otherwise assign, sublicense, lease, or in any other way transfer or disclose Software to any third party. You shall not reverse- compile, disassemble or otherwise reverse-engineer the Software. 24 | 25 | You may not subject the Software, in whole or in part, to any license obligations of Open Source Software including without limitation combining or distributing the Software with Open Source Software in a manner that subjects the Software or any portion of the Software provided by Intel hereunder to any license obligations of such Open Source Software. "Open Source Software" means any software that requires as a condition of use, modification and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software 26 | 27 | (a) be disclosed or distributed in source code form; or 28 | 29 | (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or 30 | 31 | (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: 32 | 33 | (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), 34 | 35 | (b) the Artistic License (e.g., PERL), 36 | 37 | (c) the Mozilla Public License, 38 | 39 | (d) the Netscape Public License, 40 | 41 | (e) the Sun Community Source License (SCSL), 42 | 43 | (f) the Sun Industry Source License (SISL), 44 | 45 | (g) the Apache Software license and 46 | 47 | (h) the Common Public License (CPL). 48 | 49 | NO OTHER RIGHTS. The Software is protected by the intellectual property laws of the United States and other countries, and international treaty provisions. Except as otherwise expressly above, Intel grants no express or implied rights under Intel patents, copyrights, trademarks, or other intellectual property rights. Except as expressly stated in this Agreement, no license or right is granted to You directly or by implication, inducement, estoppel or otherwise. Intel shall have the right to inspect or have an independent auditor inspect Your relevant records to verify Your compliance with the terms and conditions of this Agreement. 50 | 51 | CONFIDENTIALITY. If You wish to have a third party consultant or subcontractor ("Contractor") perform work on Your behalf which involves access to or use of Software, You shall obtain a written confidentiality agreement from the Contractor which contains terms and obligations with respect to access to or use of Software no less restrictive than those set forth in this Agreement and excluding any distribution rights, and use for any other purpose. Otherwise, You shall not disclose the terms or existence of this Agreement or use Intel's Name in any publications, advertisements, or other announcements without Intel's prior written consent. You do not have any rights to use any Intel trademarks or logos. 52 | 53 | OWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software remains with Intel or its suppliers. The Software is copyrighted and protected by the laws of the United States and other countries, and international treaty provisions. You may not remove any copyright notices from the Software. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support or update the Software. Except as otherwise expressly provided, Intel grants no express or implied right under Intel patents, copyrights, trademarks, or other intellectual property rights. You may transfer the Software only if the recipient agrees to be fully bound by these terms and if you retain no copies of the Software. 54 | 55 | SUPPORT. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support, update or provide training for the Software. Intel may in its sole discretion offer such services under separate terms at Intel’s then-current rates. You may request additional information on Intel’s service offerings from an Intel sales representative. You agree to be solely responsible to Your End Users for any update or support obligation or other liability which may arise from the distribution of the Software. 56 | 57 | EXCLUSION OF OTHER WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does not warrant or assume responsibility for the accuracy or completeness of any information, text, graphics, links or other items contained within the Software. 58 | 59 | LIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION. THE SOFTWARE LICENSED HEREUNDER IS NOT DESIGNED OR INTENDED FOR USE IN ANY MEDICAL, LIFE SAVING OR LIFE SUSTAINING SYSTEMS, TRANSPORTATION SYSTEMS, NUCLEAR SYSTEMS, OR FOR ANY OTHER MISSION CRITICAL APPLICATION IN WHICH THE FAILURE OF THE SOFTWARE COULD LEAD TO PERSONAL INJURY OR DEATH. YOU SHALL INDEMNIFY AND HOLD INTEL AND THE INTEL PARTIES HARMLESS AGAINST ALL CLAIMS, COSTS, DAMAGES, AND EXPENSES, AND REASONABLE ATTORNEY FEES ARISING OUT OF, DIRECTLY OR INDIRECTLY, THE DISTRIBUTION OF THE SOFTWARE AND ANY CLAIM OF PRODUCT LIABILITY, PERSONAL INJURY OR DEATH ASSOCIATED WITH ANY UNINTENDED USE, EVEN IF SUCH CLAIM ALLEGES THAT AN INTEL PARTY WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE. THE LIMITED REMEDIES, WARRANTY DISCLAIMER AND LIMITED LIABILITY ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN INTEL AND YOU. INTEL WOULD NOT BE ABLE TO PROVIDE THE SOFTWARE WITHOUT SUCH LIMITATIONS. 60 | 61 | TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement immediately, upon notice from Intel, if You violate its terms. Upon termination, You will immediately destroy the Software (including providing certification of such destruction back to Intel) or return all copies of the Software to Intel. In the event of termination of this Agreement, all licenses granted to You hereunder shall immediately terminate, except for licenses that you have previously distributed to Your end-users pursuant to the license grant above. 62 | 63 | APPLICABLE LAWS. Any claims arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. Each Party hereby agrees to jurisdiction and venue in the courts of the State of California for all disputes and litigation arising under or relating to this Agreement. The Parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The Parties consent to the personal jurisdiction of the above courts. 64 | 65 | Export Regulations / Export Control. You shall not export, either directly or indirectly, any product, service or technical data or system incorporating such items without first obtaining any required license or other approval from the U. S. Department of Commerce or any other agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by You, You shall ensure that the distribution and export/re-export or import of the product is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. You agree that neither you nor any of your subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. 66 | 67 | GOVERNMENT RESTRICTED RIGHTS. The Software is a "commercial item" as that term is defined in 48 C.F.R. 2.101, consisting of "commercial computer software" and "commercial computer software documentation" as such terms are used in 48 C.F.R. 12.212. Consistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1 through 227.7202-4, You will provide the Software to the U.S. Government as an End User only pursuant to the terms and conditions therein. Contractor or Manufacturer is Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA 95052. 68 | 69 | Assignment. You may not delegate, assign or transfer this Agreement, the license(s) granted or any of Your rights or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether You are the surviving entity) or acquisition, or otherwise and any attempt to do so, without Intel’s express prior written consent, shall be null and void. Intel may assign this Agreement, and its rights and obligations hereunder, in its sole discretion. 70 | 71 | Entire Agreement. The terms and conditions of this Agreement constitutes the entire agreement between the parties with respect to the subject matter hereof, and merges and supersedes all prior, contemporaneous agreements, understandings, negotiations and discussions. Neither of the parties hereto shall be bound by any conditions, definitions, warranties, understandings or representations with respect to the subject matter hereof other than as expressly provided for herein. Intel is not obligated under any other agreements unless they are in writing and signed by an authorized representative of Intel. Without limiting the foregoing, terms and conditions on any purchase orders or similar materials submitted by You to Intel, and any terms contained in Intel’s standard acknowledgment form that are in conflict with these terms, shall be of no force or effect. 72 | 73 | Attorneys’ Fees. In the event any proceeding or lawsuit is brought by Intel or You in connection with this Agreement, the prevailing party in such proceeding shall be entitled to receive its costs, expert witness fees and reasonable attorneys’ fees, including costs and fees on appeal. 74 | 75 | No Agency. Nothing contained herein shall be construed as creating any agency, employment relationship, partnership, principal-agent or other form of joint enterprise between the parties. 76 | 77 | Severability. In the event that any provision of this Agreement shall be unenforceable or invalid under any applicable law or be so held by applicable court decision, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions. 78 | 79 | Waiver. The failure of either party to require performance by the other party of any provision hereof shall not affect the full right to require such performance at any time thereafter; nor shall the waiver by either party of a breach of any provision hereof be taken or held to be a waiver of the provision itself. 80 | 81 | Language. This Agreement is in the English language only, which language shall be controlling in all respects, and all versions of this Agreement in any other language shall be for accommodation only and shall not be binding on you or Intel. All communications and notices made or given pursuant to this Agreement, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. 82 | 83 | 84 | 85 | EXHIBIT “A” 86 | 87 | INTEL SOFTWARE LICENSE AGREEMENT (Final, Single User) 88 | 89 | IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. 90 | 91 | Do not use or load software from this site or any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. 92 | 93 | LICENSE. You may copy the Software onto a single computer for your personal, or internal business purpose use, and you may make one back-up copy of the Software, subject to these conditions: 94 | 95 | · You may not copy, modify, rent, sell, distribute or transfer any part of the Software except as provided in this Agreement, and you agree to prevent unauthorized copying of the Software. 96 | 97 | · You may not reverse engineer, decompile, or disassemble the Software. 98 | 99 | · You may not sublicense or permit simultaneous use of the Software by more than one user. 100 | 101 | The Software may contain the software or other property of third party suppliers, some of which may be identified in, and licensed in accordance with, any enclosed “license.txt” file or other text or file. 102 | 103 | OWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software remains with Intel or its suppliers. The Software is copyrighted and protected by the laws of the United States and other countries, and international treaty provisions. You may not remove any copyright notices from the Software. Intel may make changes to the Software, or to items referenced therein, at any time without notice, but is not obligated to support or update the Software. Except as otherwise expressly provided, Intel grants no express or implied right under Intel patents, copyrights, trademarks, or other intellectual property rights. You may transfer the Software only if the recipient agrees to be fully bound by these terms and if you retain no copies of the Software. 104 | 105 | EXCLUSION OF OTHER WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does not warrant or assume responsibility for the accuracy or completeness of any information, text, graphics, links or other items contained within the Software. 106 | 107 | LIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION. 108 | 109 | TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at any time if you violate its terms. Upon termination, you will immediately destroy the Software or return all copies of the Software to Intel. 110 | 111 | APPLICABLE LAWS. Claims arising under this Agreement shall be governed by the laws of Delaware, excluding its principles of conflict of laws and the United Nations Convention on Contracts for the Sale of Goods. You may not export the Software in violation of applicable export laws and regulations. Intel is not obligated under any other agreements unless they are in writing and signed by an authorized representative of Intel. 112 | 113 | GOVERNMENT RESTRICTED RIGHTS. The Software is provided with "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government is subject to restrictions as set forth in FAR52.227-14 and DFAR252.227-7013 et seq. or its successor. Use of the Software by the Government constitutes acknowledgment of Intel's proprietary rights therein. Contractor or Manufacturer is Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA 95052. 114 | 115 | -------------------------------------------------------------------------------- /media_profiles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 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 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | ]> 74 | 78 | 79 | 80 | 81 | 82 | 83 | 94 | 95 | 96 | 108 | 109 | 110 | 121 | 122 | 123 | 134 | 135 | 136 | 148 | 149 | 160 | 186 | 187 | 198 | 199 | 200 | 212 | 213 | 214 | 225 | 226 | 227 | 238 | 239 | 240 | 251 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 302 | 303 | 304 | 315 | 316 | 317 | 328 | 329 | 330 | 342 | 343 | 344 | 355 | 356 | 357 | 368 | 382 | 383 | 394 | 395 | 396 | 408 | 409 | 410 | 421 | 422 | 423 | 434 | 435 | 436 | 447 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 479 | 484 | 485 | 490 | 491 | 496 | 497 | 501 | 502 | 506 | 507 | 511 | 512 | 516 | 517 | 521 | 522 | 533 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | --------------------------------------------------------------------------------