From 146369a9a4cd13964dc4fb70b164f3e99f9fe8ed Mon Sep 17 00:00:00 2001 From: Konsta Date: Tue, 18 Mar 2025 23:10:21 +0200 Subject: [PATCH] bluetooth: remove unused BDROID_BUILDCFG header * Doesn't do anything if BOARD_HAVE_BLUETOOTH_BCM is not set. * Bluetooth device name is parsed from 'ro.product.model' if no default is provided using 'bluetooth.device.default_name' property. --- BoardConfig.mk | 1 - bluetooth/bdroid_buildcfg.h | 12 ------------ 2 files changed, 13 deletions(-) delete mode 100644 bluetooth/bdroid_buildcfg.h diff --git a/BoardConfig.mk b/BoardConfig.mk index 71dd4bf..cef4a4e 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -20,7 +20,6 @@ TARGET_2ND_CPU_ABI2 := armeabi TARGET_2ND_CPU_VARIANT := generic # Bluetooth -BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(DEVICE_PATH)/bluetooth BOARD_HAVE_BLUETOOTH := true # Bootloader diff --git a/bluetooth/bdroid_buildcfg.h b/bluetooth/bdroid_buildcfg.h deleted file mode 100644 index a8c7909..0000000 --- a/bluetooth/bdroid_buildcfg.h +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Copyright (C) 2021-2022 KonstaKANG - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef _BDROID_BUILDCFG_H -#define _BDROID_BUILDCFG_H - -#define BTM_DEF_LOCAL_NAME "Raspberry Pi 4" - -#endif