Skip to content

Commit

Permalink
KonaBessCore: Load Waipio v2 dts too
Browse files Browse the repository at this point in the history
* Somehow moto is naming Waipio v2 Soc as Waipio Soc, which is a big mess.
* This fixes support for MI 12.
  • Loading branch information
libxzr committed Jan 3, 2022
1 parent be9fb0b commit 5fc6037
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/xzr/konabess/KonaBessCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ public static void checkDevice(Context context) throws IOException {
dtb.id = i;
dtb.type = ChipInfo.type.yupik;
dtbs.add(dtb);
} else if (checkChip(context, i, "Waipio SoC")) {
} else if (checkChip(context, i, "Waipio SoC")
|| checkChip(context, i, "Waipio v2 SoC")) {
dtb dtb = new dtb();
dtb.id = i;
dtb.type = ChipInfo.type.waipio_singleBin;
Expand Down

0 comments on commit 5fc6037

Please sign in to comment.