diff --git a/playbooks/configure_pi_top_os.yml b/playbooks/configure_pi_top_os.yml index 21f69a0..835a144 100644 --- a/playbooks/configure_pi_top_os.yml +++ b/playbooks/configure_pi_top_os.yml @@ -73,6 +73,11 @@ dest: /boot/firmware/config.txt mode: '0755' + - name: Enable 64 bit mode + when: build_type == "arm64" or build_type == "arm64-lite" + shell: | + echo "# Run in 64-bit mode\narm_64bit=1" | tee -a /boot/firmware/config.txt + - name: Copy boot config.txt backup copy: src: files/config.txt