-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move in the few common Stuff back to device Tree
To support more devices with only wifi like Galaxy view Change-Id: Iecc9bb0554b4dcb887da488f6186fa4a7c660a8f Signed-off-by: Apavayan Sinha <[email protected]>
- Loading branch information
Showing
10 changed files
with
274 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright (C) 2012 The Android Open Source Project | ||
* Copyright (C) 2014 The CyanogenMod Project <http://www.cyanogenmod.org> | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef _BDROID_BUILDCFG_H | ||
#define _BDROID_BUILDCFG_H | ||
|
||
#define BTM_DEF_LOCAL_NAME "Samsung Galaxy J7" | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
key 256 HEADSETHOOK | ||
key 257 VOLUME_UP | ||
key 258 VOLUME_DOWN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# You can find out the values using the 'getevent' command. | ||
# Press a button and you will see something like: | ||
# | ||
# /dev/input/event7: 0001 0074 00000001 | ||
# ^^^^ | ||
# | ||
# This is the power button. Convert 0x74 hex to decimal and | ||
# add it here to a file you name after the 'name' of the | ||
# device. | ||
# | ||
key 114 VOLUME_DOWN | ||
key 115 VOLUME_UP | ||
key 116 POWER | ||
key 152 POWER | ||
key 172 HOME | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# Copyright (C) 2016 The CyanogenMod Project | ||
# | ||
# 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. | ||
# | ||
|
||
key 158 BACK VIRTUAL | ||
key 254 APP_SWITCH VIRTUAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (C) 2013 The CyanogenMod Project | ||
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. | ||
--> | ||
|
||
<!-- Version History | ||
version 1 - initial version. | ||
version 2 - added recipientLimit. | ||
version 3 - added min/max recycler values. | ||
--> | ||
|
||
<mms_config version="3"> | ||
|
||
<!-- Maximum message size in bytes for a MMS message --> | ||
<int name="maxMessageSize">1045876</int> | ||
|
||
<!-- Maximum height for an attached image --> | ||
<int name="maxImageHeight">2592</int> | ||
|
||
<!-- Maximum width for an attached image --> | ||
<int name="maxImageWidth">2592</int> | ||
|
||
<!-- If true, The text message over 160 characters will be sent in multi part. | ||
If false, The text message over 160 characters will be sent | ||
via multi media message. --> | ||
<bool name="enableMultipartSMS">true</bool> | ||
|
||
<!-- If true, the text message will be split every 160 characters. | ||
If false, the text will never be split before being sent. --> | ||
<bool name="enableSplitSMS">false</bool> | ||
|
||
<!-- User-Agent parameter used in MMS http request --> | ||
<string name="userAgent">SAMSUNG-SM-J700F-Mms</string> | ||
|
||
<!-- UAProf URL --> | ||
<string name="uaProfUrl">http://wap.samsungmobile.com/uaprof/SM-J700F.xml</string> | ||
|
||
</mms_config> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (C) 2009 The Android Open Source Project | ||
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. | ||
--> | ||
|
||
<!-- Phone app resources that may need to be customized | ||
for different hardware or product builds. --> | ||
<resources> | ||
<!-- Determines if device implements a noise suppression device for in call audio--> | ||
<bool name="has_in_call_noise_suppression">true</bool> | ||
|
||
<!-- Show enabled lte option for lte device --> | ||
<bool name="config_enabled_lte" translatable="false">true</bool> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters