Skip to content

Commit

Permalink
ginkgo: Support a new willow version
Browse files Browse the repository at this point in the history
Change-Id: If478e891f3b7e800d1dea0587ee1e291eb910592
  • Loading branch information
DarkJoker360 authored and erwinabs committed Mar 23, 2021
1 parent 7d775c5 commit a2c7a5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init/init_ginkgo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ void vendor_load_properties() {
property_set("ro.build.date.utc", "1546335651");
std::string device_region = android::base::GetProperty("ro.boot.hwc", "");
std::string device_hwversion = android::base::GetProperty("ro.boot.hwversion", "");
if (device_region == "Global_B" && (device_hwversion == "18.39.0" || device_hwversion == "19.39.0"))
if (device_region == "Global_B" && (device_hwversion == "18.31.0" ||
device_hwversion == "18.39.0" || device_hwversion == "19.39.0"))
{
load_properties("willow");
}
Expand Down

0 comments on commit a2c7a5e

Please sign in to comment.