From a62db9d3a6758f1db77b1e1bedc7f62084445afe Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Wed, 14 Jun 2023 16:57:56 -0400 Subject: [PATCH] ansible: Add default cross-compilers for Debian-based distributions When deploying a new rootnode with Debian 12, the playbook failed since no file matching the options defined in 'Include OS-specific variables.' task in `roles/cross-compilers/main.yml` could be found. Change-Id: Ia360ef42e16c16dd38e8ddb9d11db6ace589b7f4 --- automation/ansible/roles/cross-compilers/vars/Debian.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 automation/ansible/roles/cross-compilers/vars/Debian.yml diff --git a/automation/ansible/roles/cross-compilers/vars/Debian.yml b/automation/ansible/roles/cross-compilers/vars/Debian.yml new file mode 100644 index 0000000..e506deb --- /dev/null +++ b/automation/ansible/roles/cross-compilers/vars/Debian.yml @@ -0,0 +1,8 @@ +--- +cross_compilers_packages: + - gcc-aarch64-linux-gnu + - gcc-arm-linux-gnueabihf + - gcc-i686-linux-gnu + - gcc-powerpc64le-linux-gnu + - gcc-powerpc-linux-gnu + - gcc-s390x-linux-gnu -- 2.34.1