- Introduced symlinks for WCNSS_qcom_cfg.ini and wlan_mac.bin for qca6490 and qca6750. - Updated BoardConfig.mk to enable vendor RIL service and set security patch level. - Enhanced device.mk with additional packages for Wi-Fi, USB, and sensors. - Removed obsolete GNSS-related files from proprietary-files.txt. - Updated setup-makefiles.py and sort-blobs-list.sh to executable permissions. - Created public.libraries.txt for shared libraries. - Added prebuilt IDCs and keylayouts for fingerprint sensors (uinput-fpc and uinput-goodix). - Implemented new HAL configuration for sensors. - Enhanced WLAN configuration files with additional parameters for performance optimization. - Updated wpa_supplicant_overlay.conf and p2p_supplicant_overlay.conf for improved Wi-Fi functionality.
29 lines
670 B
Bash
Executable File
29 lines
670 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2024 The LineageOS Project
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
|
|
# List of files to sort
|
|
PROPRIETARY_FILES_TXT=(
|
|
"proprietary-files.txt"
|
|
)
|
|
|
|
# Load sort-blobs-list.py and do some sanity checks
|
|
MY_DIR="${BASH_SOURCE%/*}"
|
|
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
|
|
|
|
ANDROID_ROOT="${MY_DIR}/../../.."
|
|
|
|
HELPER="${ANDROID_ROOT}/tools/extract-utils/sort-blobs-list.py"
|
|
if [ ! -f "${HELPER}" ]; then
|
|
echo "Unable to find helper script at ${HELPER}"
|
|
exit 1
|
|
fi
|
|
|
|
# Call the helper to sort the list
|
|
# Add --dir-first to give priority to directories and subdirectories
|
|
"${HELPER}" "${PROPRIETARY_FILES_TXT[@]}"
|