Compare commits

...

26 Commits

Author SHA1 Message Date
yova cf1b1c41e3 top locale DE
3 months ago
Kevin F. Haggerty a99837136a
Bump Security String to 2024-02-05
3 months ago
Kevin F. Haggerty f9a9f5c5e2
Bump Security String to 2024-01-05
4 months ago
Kevin F. Haggerty f5a12fe518
Bump Security String to 2023-12-05
5 months ago
Kevin F. Haggerty 4f18b156ef
Bump Security String to 2023-11-05
6 months ago
LuK1337 217e075f20 fixup! releasetools: support reading release keys out of some sort of command
6 months ago
Kevin F. Haggerty 24da9be8f3
Bump Security String to 2023-10-06
7 months ago
Kevin F. Haggerty 3d8c07cd9e
Bump Security String to 2023-09-05
8 months ago
Kevin F. Haggerty 47e2c7dd9f
Bump Security String to 2023-08-05
9 months ago
Nolen Johnson 57bf2b4459 build: handheld_product: Allow devices to not have cameras
10 months ago
Kevin F. Haggerty 0036faa048
Bump Security String to 2023-07-05
10 months ago
Kevin F. Haggerty c4d158d0af
Bump Security String to 2023-06-05
11 months ago
Kevin F. Haggerty 1bf2c4ec67
Bump Security String to 2023-05-05
1 year ago
Kevin F. Haggerty 0f63697fe9
Bump Security String to 2023-04-05
1 year ago
Kevin F. Haggerty d572c7081e
Bump Security String to 2023-03-05
1 year ago
Kevin F. Haggerty e56ac1b70c
Bump Security String to 2023-02-05
1 year ago
Kevin F. Haggerty 6a82c080b4
Bump Security String to 2023-01-05
1 year ago
Kevin F. Haggerty 2fc66564fd
Bump Security String to 2022-12-05
1 year ago
Aaron Kling 1277bdd5c0 fixup! Compute the needed shared libs for otatools.
2 years ago
Kevin F. Haggerty 5e6812fbd0
Bump Security String to 2022-11-05
2 years ago
Kevin F. Haggerty 4fc20afe7d
Bump Security String to 2022-10-05
2 years ago
Kevin F. Haggerty d3b2985ce3
Bump Security String to 2022-09-05
2 years ago
Kevin F. Haggerty 43140214c0
Bump Security String to 2022-08-05
2 years ago
Kevin F. Haggerty 31aeb4d736
Bump Security String to 2022-07-05
2 years ago
Kevin F. Haggerty 75c0077056
Bump Security String to 2022-06-05
2 years ago
Kevin F. Haggerty 2f98aeef02
Bump Security String to 2022-05-05
2 years ago

@ -4199,7 +4199,7 @@ INTERNAL_OTATOOLS_MODULES += \
ifeq (true,$(PRODUCT_SUPPORTS_VBOOT))
INTERNAL_OTATOOLS_MODULES += \
futility \
futility-host \
vboot_signer
endif

@ -240,7 +240,7 @@ ifndef PLATFORM_SECURITY_PATCH
# It must be of the form "YYYY-MM-DD" on production devices.
# It must match one of the Android Security Patch Level strings of the Public Security Bulletins.
# If there is no $PLATFORM_SECURITY_PATCH set, keep it empty.
PLATFORM_SECURITY_PATCH := 2022-04-05
PLATFORM_SECURITY_PATCH := 2024-02-05
endif
.KATI_READONLY := PLATFORM_SECURITY_PATCH

@ -50,7 +50,7 @@ PRODUCT_PROPERTY_OVERRIDES := \
endif
# Put en_US first in the list, so make it default.
PRODUCT_LOCALES := en_US
PRODUCT_LOCALES := de_DE
# Get some sounds
ifeq ($(LINEAGE_BUILD),)

@ -24,7 +24,6 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/media_product.mk)
PRODUCT_PACKAGES += \
Browser2 \
Calendar \
Camera2 \
Contacts \
DeskClock \
Gallery2 \
@ -35,6 +34,11 @@ PRODUCT_PACKAGES += \
SettingsIntelligence \
frameworks-base-overlays
ifneq ($(PRODUCT_NO_CAMERA),true)
PRODUCT_PACKAGES += \
Camera2
endif
ifeq ($(LINEAGE_BUILD),)
PRODUCT_PACKAGES += \
LatinIME

@ -2161,7 +2161,7 @@ class PasswordManager(object):
ps = subprocess.Popen(self.secure_storage_cmd, shell=True, stdout=subprocess.PIPE)
output = ps.communicate()[0]
if ps.returncode == 0:
current[i] = output
current[i] = output.decode('utf-8')
except Exception as e:
print(e)
pass

Loading…
Cancel
Save