Skip to content

Commit

Permalink
update playbooks
Browse files Browse the repository at this point in the history
gcc, linux-firmware,
  • Loading branch information
orgua committed Jun 3, 2023
1 parent b68a75b commit 7a8aa88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions deploy/roles/cleaned/tasks/software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
path: "{{ item }}"
state: absent
with_items: "{{ files_init.files | map(attribute='path') }}"
when: false
when: false # probably not helpful

- name: Delete unused firmware (by beaglebone, slightly risky) - A
ansible.builtin.file:
Expand All @@ -33,6 +33,7 @@
- "mediatek"
- "nvidia"
become: true
when: false # linux-firmware is completely uninstalled later

- name: Find unused firmware (by beaglebone, slightly risky) - B
ansible.builtin.find:
Expand All @@ -44,7 +45,7 @@
path: "{{ item }}"
state: absent
with_items: "{{ files_fw.files | map(attribute='path') }}"
when: true
when: false # linux-firmware is completely uninstalled later

- name: Uname - Get Kernel-Version
ansible.builtin.command: 'uname --kernel-release'
Expand Down
1 change: 1 addition & 0 deletions deploy/roles/maintained/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
cmd: 'yes | /opt/scripts/tools/developers/update_bootloader.sh'
changed_when: true
when: update_bootloader | bool
failed_when: false # certificate may be invalid

- name: Uname - Get Kernel-Version
ansible.builtin.command: 'uname --kernel-release'
Expand Down
4 changes: 2 additions & 2 deletions deploy/roles/sheep/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ rebuild_python_package: true
### GCC ######
gcc_tools_path: /usr/share/shepherd-tools
gcc_pru_support_path: /usr/share/shepherd-tools/pru-software-support-package
gcc_pru_cc_link: https://github.com/dinuxbg/gnupru/releases/download/2023.01
gcc_pru_cc_release: pru-elf-2023.01.arm
gcc_pru_cc_link: https://github.com/dinuxbg/gnupru/releases/download/2023.05
gcc_pru_cc_release: pru-elf-2023.05.arm
# Source: https://github.com/dinuxbg/gnupru -> TODO: the ending was .armhf before + internal change -> look for that var and fix playbooks
gcc_pru_support_branch: linux-4.19-rproc
# Source: https://github.com/dinuxbg/pru-software-support-package
Expand Down

0 comments on commit 7a8aa88

Please sign in to comment.