Skip to content

Commit

Permalink
display_menu: Show androidboot.carrier=...
Browse files Browse the repository at this point in the history
Can be interesting on Motorola devices where this is set.
  • Loading branch information
stephan-gh committed Nov 5, 2021
1 parent b542e4b commit b583bb0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions platform/msm_shared/display_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,11 @@ void display_fastboot_menu_renew(struct select_msg_info *fastboot_msg_info)
}

#if WITH_LK2ND
if (lk2nd_dev.carrier) {
snprintf(msg, sizeof(msg), "CARRIER - %s\n", lk2nd_dev.carrier);
display_fbcon_menu_message(msg, FBCON_COMMON_MSG, common_factor);
}

if (lk2nd_dev.panel.name) {
snprintf(msg, sizeof(msg), "PANEL - %s\n", lk2nd_dev.panel.name);
display_fbcon_menu_message(msg, FBCON_COMMON_MSG, common_factor);
Expand Down

0 comments on commit b583bb0

Please sign in to comment.