Compare commits
2 commits
785cd261a1
...
2f7d7b8ffd
Author | SHA1 | Date | |
---|---|---|---|
2f7d7b8ffd | |||
9b27745f2e |
|
@ -52,7 +52,7 @@ Note:
|
|||
|
||||
- Make installer images work on this device
|
||||
- Have droid-juicer run on installer images
|
||||
- Make sure my `q6voiced` package no longer includes a hard-coded config for this device
|
||||
- Make sure my `q6voiced` package no longer includes a hard-coded config for this device (known solution, need to implement)
|
||||
- Create an ITP for `tinyalsa` and `q6voiced` and get both into the repos (use the workarounds from this repo to get working call audio for now)
|
||||
- https://salsa.debian.org/Mobian-team/devices/kernels/qcom-linux/-/issues/2
|
||||
- Combine SDM670 kernel patches with those in the Mobian qcom kernel
|
||||
|
@ -60,8 +60,6 @@ Note:
|
|||
|
||||
#### Issues To Solve To Get Official Mobian Images
|
||||
|
||||
- Remove hard-coded value in the `droid-juicer` systemd unit (done, but not yet in repos)
|
||||
- https://gitlab.com/mobian1/droid-juicer/-/issues/4
|
||||
- Combining SDM670 kernel patches with the Mobian qcom kernel (To Do List entry above, **help wanted**)
|
||||
|
||||
Done:
|
||||
|
@ -70,6 +68,8 @@ Done:
|
|||
- https://salsa.debian.org/DebianOnMobile-team/qcom-phone-utils/-/commit/4f77281197c6ba1cfc1a82596157d00e8a7e014b (firmware folders)
|
||||
- https://salsa.debian.org/DebianOnMobile-team/qcom-phone-utils/-/commit/9aa29a1d0bd2327e9c74317d516a8aeecf820304 (fixes bootimg generation with LUKS)
|
||||
- https://salsa.debian.org/DebianOnMobile-team/qcom-phone-utils/-/commit/3ddb192b5c78b444065f23647b373ad66ce3617d (fixes on-screen keyboard for LUKS passphrase)
|
||||
- Remove hard-coded value in the `droid-juicer` systemd unit
|
||||
- https://gitlab.com/mobian1/droid-juicer/-/issues/4
|
||||
|
||||
For those I will remove the workarounds once the changes are in the Mobian repo
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
|
||||
- hosts: 10.66.0.1
|
||||
- hosts: all
|
||||
tasks:
|
||||
|
||||
### ALSA Config ###
|
||||
|
@ -87,15 +87,15 @@
|
|||
state: present
|
||||
update_cache: true
|
||||
|
||||
- name: "Create directory for the repos (first delete it to make it empty)"
|
||||
- name: "Remove repos that already exist"
|
||||
ansible.builtin.file:
|
||||
path: "/opt/repos/"
|
||||
state: "{{ item }}"
|
||||
path: "/opt/repos/{{ item }}"
|
||||
state: "absent"
|
||||
owner: nobody
|
||||
group: nogroup
|
||||
loop:
|
||||
- "absent"
|
||||
- "directory"
|
||||
- "tinyalsa"
|
||||
- "q6voiced"
|
||||
|
||||
- name: "Clone tinyalsa repo"
|
||||
ansible.builtin.git:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
|
||||
- hosts: 10.66.0.1,
|
||||
- hosts: all,
|
||||
|
||||
tasks:
|
||||
|
||||
|
|
Loading…
Reference in a new issue