Skip to content

Commit

Permalink
Added support for 32bit OS on 64bit ARM CPU (#302)
Browse files Browse the repository at this point in the history
Useful for Raspberry Pi.
  • Loading branch information
legolasbo authored Aug 5, 2023
1 parent 4daeade commit a17f71e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
---
- name: Load source vars
with_first_found:
- '../vars/architecture/{{ ansible_facts.architecture | lower }}-{{ ansible_facts.userspace_bits }}.yml'
- '../vars/architecture/{{ ansible_facts.architecture | lower }}.yml'
- ../vars/architecture/default.yml
ansible.builtin.include_vars: '{{ item }}'
Expand Down
3 changes: 3 additions & 0 deletions vars/architecture/aarch64-32.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# Architecture of the Go redistributable
golang_architecture: armv6l

0 comments on commit a17f71e

Please sign in to comment.