mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
15.1: Remove Lineage logo from recovery
This commit is contained in:
parent
520dbf246a
commit
5f18a38e8f
@ -0,0 +1,52 @@
|
|||||||
|
From 05eea0579312ffc9d0691ae06b6a09165ecd110e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tad <tad@spotco.us>
|
||||||
|
Date: Tue, 24 Apr 2018 12:13:43 -0400
|
||||||
|
Subject: [PATCH] Remove logo
|
||||||
|
|
||||||
|
Change-Id: Ibf900e6ceb8a571b4770f6df7efeea1d97b6b477
|
||||||
|
---
|
||||||
|
screen_ui.cpp | 8 --------
|
||||||
|
screen_ui.h | 1 -
|
||||||
|
2 files changed, 9 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/screen_ui.cpp b/screen_ui.cpp
|
||||||
|
index 190aaf33..1908885a 100644
|
||||||
|
--- a/screen_ui.cpp
|
||||||
|
+++ b/screen_ui.cpp
|
||||||
|
@@ -506,13 +506,6 @@ void ScreenRecoveryUI::draw_header_locked(int& y) {
|
||||||
|
}
|
||||||
|
y += v_unit;
|
||||||
|
|
||||||
|
- // Draw logo
|
||||||
|
- icon = logo_image;
|
||||||
|
- icon_w = gr_get_width(icon);
|
||||||
|
- icon_h = gr_get_height(icon);
|
||||||
|
- icon_x = kMarginWidth + (gr_fb_width() - icon_w) / 2;
|
||||||
|
- icon_y = y + ((v_unit * 4) - icon_h) / 2;
|
||||||
|
- gr_blit(icon, 0, 0, icon_w, icon_h, icon_x, icon_y);
|
||||||
|
y += v_unit * 4;
|
||||||
|
|
||||||
|
y += v_unit * 1; // Margin
|
||||||
|
@@ -811,7 +804,6 @@ bool ScreenRecoveryUI::Init(const std::string& locale) {
|
||||||
|
text_col_ = text_row_ = 0;
|
||||||
|
text_top_ = 1;
|
||||||
|
|
||||||
|
- LoadBitmap("logo_image", &logo_image);
|
||||||
|
LoadBitmap("ic_back", &ic_back);
|
||||||
|
LoadBitmap("ic_back_sel", &ic_back_sel);
|
||||||
|
|
||||||
|
diff --git a/screen_ui.h b/screen_ui.h
|
||||||
|
index be54994a..f6c3713f 100644
|
||||||
|
--- a/screen_ui.h
|
||||||
|
+++ b/screen_ui.h
|
||||||
|
@@ -133,7 +133,6 @@ class ScreenRecoveryUI : public RecoveryUI {
|
||||||
|
// The layout to use.
|
||||||
|
int layout_;
|
||||||
|
|
||||||
|
- GRSurface* logo_image;
|
||||||
|
GRSurface* ic_back;
|
||||||
|
GRSurface* ic_back_sel;
|
||||||
|
|
||||||
|
--
|
||||||
|
2.17.0
|
||||||
|
|
@ -1 +1 @@
|
|||||||
Subproject commit 1007ddcf81da7615d14aeb23e87b85ddd8181358
|
Subproject commit 170452f54a67b44d2186d13950cc4c58d92f9869
|
@ -20,9 +20,10 @@
|
|||||||
echo "Rebranding...";
|
echo "Rebranding...";
|
||||||
|
|
||||||
enter "bootable/recovery";
|
enter "bootable/recovery";
|
||||||
|
patch -p1 < $patches"android_bootable_recovery/0001-Remove_Logo.patch"; #Remove logo rendering code
|
||||||
|
rm res*/images/logo_image.png; #Remove logo images
|
||||||
sed -i 's|Android Recovery|DivestOS Recovery|' *_ui.cpp;
|
sed -i 's|Android Recovery|DivestOS Recovery|' *_ui.cpp;
|
||||||
sed -i 's|LineageOS|DivestOS|' ui.cpp;
|
sed -i 's|LineageOS|DivestOS|' ui.cpp;
|
||||||
#TODO: Change out res-*/images/logo_image.png
|
|
||||||
|
|
||||||
enter "build/make";
|
enter "build/make";
|
||||||
sed -i 's|echo "ro.build.user=$USER"|echo "ro.build.user=emy"|' tools/buildinfo.sh; #Override build user
|
sed -i 's|echo "ro.build.user=$USER"|echo "ro.build.user=emy"|' tools/buildinfo.sh; #Override build user
|
||||||
|
Loading…
Reference in New Issue
Block a user