OTA Server for LineageOS
Go to file
Steven Polley 5bdda0259a
continuous-integration/drone/push Build is passing Details
Add configurable baseURL (required for multi-device support)
2023-08-21 19:47:49 -06:00
public initial commit 2023-06-03 23:07:55 -06:00
.drone.yml fix typos 2023-06-03 23:13:51 -06:00
.gitignore go mod and .gitignore 2023-06-03 23:10:29 -06:00
Dockerfile fix typos 2023-06-03 23:13:51 -06:00
README.md Update docker compose example for device specific folder 2023-08-19 21:58:25 -06:00
go.mod go mod and .gitignore 2023-06-03 23:10:29 -06:00
main.go Add configurable baseURL (required for multi-device support) 2023-08-21 19:47:49 -06:00
ota-logo.jpg add logo 2023-06-09 17:04:15 -06:00
processFiles.go fix string formatting bug causing mangled id's 2023-07-10 18:08:34 -06:00

README.md

Build Status

lineageos-ota-server

A highly-scalable and lightweight OTA Server for LineageOS. The OTA server supports a single device model (eg: Google Pixel), if you intend to have OTA's available for a variety of device models, just create an additional OTA server instance for each device.

alt text

docker compose example

The service listens on port 8080 by default. Mount the output directory for the builds of the device you wish to serve to the /out folder. Also, mount a persistent public directory which will be served publicly. The public folder can be shared across multiple OTA server instances if you wish.


version: '3.8'

  lineageos-ota:
    image: registry.deadbeef.codes/lineageos-ota-server:latest
    restart: always
    expose:
      - "8080"
    volumes:
      - /data/android/lineage/out/target/product/sunfish:/out
      - /data/android/public/sunfish:/public
    

How to point device to OTA server

The recommended way is to include the configuration inside your build of the ROM. We do this by by including the URL as a system build.prop by doing the following:

Create new file /data/android/lineage/vendor/lineage/build/core/deadbeef-ota.mk

# deadbeef.codes LineageOS OTA update server - replace with your own URL - example below may be parsed as https://lineageos-ota-bluejay.deadbeef.codes
ADDITIONAL_SYSTEM_PROPERTIES += \
        lineage.updater.uri=https://lineageos-ota-{device}.deadbeef.codes 

Edit /data/android/lineage/vendor/lineage/build/core/main.mk to include deadbeef-ota.mk


# Include LineageOS versions
include $(TOPDIR)vendor/lineage/build/core/main_version.mk

# Include deadbeef.codes OTA server
include $(TOPDIR)vendor/lineage/build/core/deadbeef-ota.mk