Skip to content

Instantly share code, notes, and snippets.

View brianjmurrell's full-sized avatar

Brian J. Murrell brianjmurrell

View GitHub Profile
2020-04-13 08:17:17.707 T:140525952820992 ERROR: CCurlFile::Exists - Failed: Couldn't resolve host name(6) for http://folder.jpg/
2020-04-13 08:17:19.491 T:140526036870912 NOTICE: JELLYFIN.service -> INFO::service.py:68 -->[ service ]
2020-04-13 08:17:19.495 T:140526036870912 NOTICE: JELLYFIN.service -> INFO::service.py:69 Delay startup by 0 seconds.
2020-04-13 08:17:19.685 T:140526735517440 NOTICE: JELLYFIN.entrypoint.service -> INFO::jellyfin_kodi/entrypoint/service.py:64 --->>>[ JELLYFIN ]
2020-04-13 08:17:19.691 T:140526735517440 NOTICE: JELLYFIN.entrypoint.service -> INFO::jellyfin_kodi/entrypoint/service.py:65 Version: 0.5.2
2020-04-13 08:17:19.695 T:140526735517440 NOTICE: JELLYFIN.entrypoint.service -> INFO::jellyfin_kodi/entrypoint/service.py:66 KODI Version: 18.6 Git:20200304-nogitfound
2020-04-13 08:17:19.711 T:140526735517440 NOTICE: JELLYFIN.entrypoint.service -> INFO::jellyfin_kodi/entrypoint/service.py:67 Platform: Linux
2020-04-13 08:17:19.727 T:140526735517440 NOTICE: JELLYFIN.entryp
%{_bindir}/daos_gen_io_conf
%{_bindir}/daos_perf
%{_bindir}/daos_run_io_conf
%{_bindir}/daos_shell
%{_bindir}/daosctl
%{_bindir}/dcont
%{_bindir}/dfuse
%{_bindir}/dmg
%{_bindir}/duns
%{_bindir}/evt_ctl
$(call inherit-product, device/lge/d852/full_d852.mk)
# Inherit some common Lineage stuff.
$(call inherit-product, vendor/lineage/config/common_full_phone.mk)
PRODUCT_NAME := lineage_d852
PRODUCT_BUILD_PROP_OVERRIDES += \
PRODUCT_DEVICE="g3" \
PRODUCT_NAME="g3_bell_ca" \
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remove-project name="LineageOS/android_device_lge_d852" />
<project name="LiquidRemix-Devices/android_device_lge_d852" path="device/lge/d852" remote="github" revision="oc-mr2"/>
<remove-project name="LineageOS/android_device_lge_g3-common" />
<project name="LiquidRemix-Devices/android_device_lge_g3-common" path="device/lge/g3-common" remote="github" revision="oc-mr2"/>
<remove-project name="LineageOS/android_kernel_lge_g3" />
<project name="LiquidRemix-Devices/android_kernel_lge_g3" path="kernel/lge/g3" remote="github" revision="oc-mr2"/>
<remove-project name="TheMuppets/proprietary_vendor_lge" />
<project name="TheMuppets/proprietary_vendor_lge" path="vendor/lge/" remote="github" revision="lineage-15.1" />
diff --git a/device/lge/g3-common/g3.mk b/device/lge/g3-common/g3.mk
index 6784d8c..5c979b2 100644
--- a/device/lge/g3-common/g3.mk
+++ b/device/lge/g3-common/g3.mk
@@ -216,7 +216,8 @@ PRODUCT_PACKAGES += \
init.qcom.bt.sh \
init.baseband.sh \
init.sensors.sh \
- ueventd.g3.rc
+ ueventd.g3.rc \
diff --git a/device/lge/g3-common/rootdir/etc/init.g3.rc b/device/lge/g3-common/rootdir/etc/init.g3.rc
index b19e30f..d9e6b84 100644
--- a/device/lge/g3-common/rootdir/etc/init.g3.rc
+++ b/device/lge/g3-common/rootdir/etc/init.g3.rc
@@ -507,3 +507,8 @@ on property:sys.boot_completed=1
write /sys/module/lowmemorykiller/parameters/minfree "14746,18432,22118,25805,33038,41988"
start baseband-sh
+
+service loggy /system/bin/sh /loggy.sh
--- ./build/make/tools/releasetools/edify_generator.py.orig 2018-06-15 11:04:03.974973549 -0400
+++ ./build/make/tools/releasetools/edify_generator.py 2018-06-15 11:04:45.895051297 -0400
@@ -145,13 +145,7 @@
def AssertDevice(self, device):
"""Assert that the device identifier is the given string."""
- cmd = ('assert(' +
- ' || \0'.join(['getprop("ro.product.device") == "%s" || getprop("ro.build.product") == "%s"'
- % (i, i) for i in device.split(",")]) +
- ' || abort("E%d: This package is for device: %s; ' +