Home | History | Annotate | Download | only in settings

Lines Matching refs:sku

37  * of the required regulatory info (If ro.bootloader.hardware.sku property is set use
38 * "regulatory_info_<sku>.png where sku is ro.bootloader.hardware.sku property value in lowercase"),
101 // When hardware sku property exists, use regulatory_info_<sku> resource if valid.
102 String sku = SystemProperties.get("ro.boot.hardware.sku", "");
103 if (!TextUtils.isEmpty(sku)) {
104 String regulatory_info_res = REGULATORY_INFO_RESOURCE + "_" + sku.toLowerCase();