android_device_samsung_a20/universal7885-common/vendorsetup.sh
roynatech2544 946f4768e9 universal7885: FMRadio: Remove source edit
If the AIDL hal which can be allowed to change uid calls audioflinger API to change route, we don't need to change source for it. seteuid(audioserver_uid) will work fine
2022-10-08 01:12:37 +09:00

31 lines
1.4 KiB
Shell
Executable file

UNIVERSAL="device/samsung/universal7885-common"
FM_PATH="packages/apps/FMRadio"
if [ -e ~/.git-credentials ]; then
MODE="https://"
SPERATOR="/"
else
MODE="git@"
SPERATOR=":"
fi
git clone --depth=1 "$MODE"github.com"$SPERATOR"eurekadevelopment/Eureka-Kernel-Exynos7885-Q-R-S-private.git -b R10.1-T_rom kernel/samsung/exynos7885
git clone https://github.com/eurekadevelopment/android_hardware_samsung_slsi_libbt hardware/samsung_slsi/libbt
git clone https://github.com/eurekadevelopment/android_hardware_samsung_slsi_scsc_wifibt_wifi_hal.git hardware/samsung_slsi/scsc_wifibt/wifi_hal
git clone https://github.com/lineageos/android_hardware_samsung_slsi_scsc_wifibt_wpa_supplicant_lib hardware/samsung_slsi/scsc_wifibt/wpa_supplicant_lib
mv hardware/samsung/nfc .
git clone https://github.com/eurekadevelopment/android_hardware_samsung hardware/samsung -b AOSP-13
mv nfc hardware/samsung
git clone --depth=1 https://github.com/eurekadevelopment/android_vendor_samsung_exynos7885.git -b android-13 vendor/samsung
if test -f ${UNIVERSAL}/vendor_name; then
rm ${UNIVERSAL}/vendor_name
fi
python3 ${UNIVERSAL}/host-tools/makefile_generator.py
for dev in a10dd a10 a20 a20e a30 a30s a40; do
echo "Generating ${dev} Makefiles..."
bash ${UNIVERSAL}/setup.sh "$dev"
done
# Remove multiple declared FMRadio path (we have our own FMRadio and this cause build error)
if [ -d "$FM_PATH" ]; then
echo "Remove FMRadio from ROM Source"
rm -Rf $FM_PATH
fi