-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
|
||
#include <skeleton32.dtsi> | ||
#include <lk2nd.dtsi> | ||
|
||
/ { | ||
/* | ||
* Bootloader actually wants the compatible to have the soc in it... | ||
* It also doesn't care about the qcom,msm-id but let it be here for | ||
* the completeness... | ||
*/ | ||
compatible = "qcom,apq8026"; | ||
qcom,msm-id = <199 0x20000>; | ||
qcom,board-id = <132 0x0a>; | ||
}; | ||
|
||
&lk2nd { | ||
lg-lenok { | ||
model = "LG G Watch R"; | ||
compatible = "lg,lenok"; | ||
}; | ||
}; |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ LOCAL_DIR := $(GET_LOCAL_DIR) | |
|
||
DTBS += \ | ||
$(LOCAL_DIR)/lumia.dtb \ | ||
|
||
ADTBS += \ | ||
$(LOCAL_DIR)/lenok.dtb \ |
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 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
#include <skeleton64.dtsi> | ||
#include <lk2nd.dtsi> | ||
|
||
/ { | ||
model = "Wileyfox Swift2 X50 Series"; | ||
compatible = "qcom,msm8937-mtp", "qcom,msm8937", "qcom,mtp"; | ||
qcom,msm-id = <0x126 0x00>; | ||
qcom,board-id = <0x08 0x00>; | ||
qcom,pmic-id = <0x10019 0x10011 0x00 0x00>; | ||
|
||
}; | ||
|
||
&lk2nd { | ||
model = "Wileyfox Swift 2"; | ||
compatible = "wileyfox,marmite"; | ||
}; |
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,5 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
LOCAL_DIR := $(GET_LOCAL_DIR) | ||
|
||
ADTBS += \ | ||
$(LOCAL_DIR)/msm8937-mtp.dtb \ |