diff --git a/README.md b/README.md index d695110..683b8f2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/ansible/audio.yml b/ansible/audio.yml index f3ffb1d..539fd9f 100644 --- a/ansible/audio.yml +++ b/ansible/audio.yml @@ -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: diff --git a/ansible/workarounds.yml b/ansible/workarounds.yml index 2f29fc1..9a3e92d 100644 --- a/ansible/workarounds.yml +++ b/ansible/workarounds.yml @@ -1,6 +1,6 @@ --- -- hosts: all, +- hosts: 10.66.0.1, tasks: