It was able to solve by itself.
frameworks\base\services\java\com\android\server\SystemServer.java
Compulsorily, the Bluetooth service was added and solved.
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
old mode 100644
new mode 100755
index 4c88b87..2a0a046
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -227,9 +227,7 @@ class ServerThread extends Thread {
Slog.i(TAG, "No Bluetooh Service (emulator)");
} else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
Slog.i(TAG, "No Bluetooth Service (factory test)");
- } else if (SystemProperties.get("hw.bluetooth").equals("0")){
- Slog.i(TAG, "No Bluetooth Service (product not support)");
- } else {
+ } else {
Slog.i(TAG, "Bluetooth Service");
bluetooth = new BluetoothService(context);
ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth);
@@ -246,8 +244,7 @@ class ServerThread extends Thread {
if (airplaneModeOn == 0 && bluetoothOn != 0) {
bluetooth.enable();
}
- }
-
+ }
} catch (RuntimeException e) {
Slog.e("System", "******************************************");
Slog.e("System", "************ Failure starting core service", e);
BR,
Naoyasu Suzuki