mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
dtbhtool: Print better warnings for PLATFORM/SUBTYPE mismatch
Change-Id: I486239d47255d5a5347e7b8ac7348afb8bc5bddb (cherry picked from commit 8f74f0a7e9839d4f6f499aecdcc6c042ca4671a0)
This commit is contained in:
parent
2440fd85c9
commit
4ada34bc6d
1 changed files with 4 additions and 2 deletions
|
@ -170,14 +170,16 @@ void *load_dtbh_block(const char *dtb_path, unsigned pagesize, unsigned *_sz)
|
|||
|
||||
prop_platform = fdt_getprop(dtb, offset, "model_info-platform", &len);
|
||||
if (strcmp((char *)&prop_platform[0], DTBH_PLATFORM)) {
|
||||
warnx("model_info-platform of %s is invalid, skipping", fname);
|
||||
warnx("model_info-platform of %s is invalid, skipping (expected %s but got %s)",
|
||||
fname, DTBH_PLATFORM, (char *)&prop_platform[0]);
|
||||
free(dtb);
|
||||
continue;
|
||||
}
|
||||
|
||||
prop_subtype = fdt_getprop(dtb, offset, "model_info-subtype", &len);
|
||||
if (strcmp((char *)&prop_subtype[0], DTBH_SUBTYPE)) {
|
||||
warnx("model_info-subtype of %s is invalid, skipping", fname);
|
||||
warnx("model_info-subtype of %s is invalid, skipping (expected %s but got %s)",
|
||||
fname, DTBH_SUBTYPE, (char *)&prop_subtype[0]);
|
||||
free(dtb);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue