Compare commits

..

No commits in common. "2f7d7b8ffdd6c2621e279c5243828775e15f7ab5" and "785cd261a13fbaa165944ba65b74015c51b123a3" have entirely different histories.

3 changed files with 10 additions and 10 deletions

View file

@ -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 (known solution, need to implement)
- Make sure my `q6voiced` package no longer includes a hard-coded config for this device
- 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,6 +60,8 @@ 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:
@ -68,8 +70,6 @@ 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

View file

@ -1,6 +1,6 @@
---
- hosts: all
- hosts: 10.66.0.1
tasks:
### ALSA Config ###
@ -87,15 +87,15 @@
state: present
update_cache: true
- name: "Remove repos that already exist"
- name: "Create directory for the repos (first delete it to make it empty)"
ansible.builtin.file:
path: "/opt/repos/{{ item }}"
state: "absent"
path: "/opt/repos/"
state: "{{ item }}"
owner: nobody
group: nogroup
loop:
- "tinyalsa"
- "q6voiced"
- "absent"
- "directory"
- name: "Clone tinyalsa repo"
ansible.builtin.git:

View file

@ -1,6 +1,6 @@
---
- hosts: all,
- hosts: 10.66.0.1,
tasks: