diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-08-11 00:33:33 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-08-11 00:33:33 +0200 |
| commit | b94d56f916c275ba73e4cd668629652993a96107 (patch) | |
| tree | 7b265cb5c6d94e51eecfcb1cb805aa46a845dbf3 /host_vars | |
| parent | d3e78a37b6d907ecbfc817db6ba4c7a71f8a96c3 (diff) | |
Add Raspberry Pi5 support to bootstrap
Diffstat (limited to 'host_vars')
| -rw-r--r-- | host_vars/raspberryiso.local.yml | bin | 0 -> 577 bytes | |||
| -rw-r--r-- | host_vars/raspberryiso.local.yml.example | 25 |
2 files changed, 25 insertions, 0 deletions
diff --git a/host_vars/raspberryiso.local.yml b/host_vars/raspberryiso.local.yml Binary files differnew file mode 100644 index 0000000..04b3db2 --- /dev/null +++ b/host_vars/raspberryiso.local.yml diff --git a/host_vars/raspberryiso.local.yml.example b/host_vars/raspberryiso.local.yml.example new file mode 100644 index 0000000..6a98993 --- /dev/null +++ b/host_vars/raspberryiso.local.yml.example @@ -0,0 +1,25 @@ +--- +hostname: "rpi5.local" +partition_disk: "/dev/mmcblk0" +partition_wipe: true +partition_boot: + num: 1 + name: "boot" + flags: [boot, esp] + part_start: "0%" + part_end: "200MiB" + fstype: "vfat" + fstype_opts: "-F 32 -n boot" + dev: "{{ partition_disk }}p1" + mount_path: "/mnt/boot/firmware" + fstab_opts: "defaults,noatime" +partition_root: + num: 2 + name: "root" + part_start: "200MiB" + part_end: "100%" + fstype: "ext4" + dev: "{{ partition_disk }}p2" + mount_path: "/mnt" +partition_extras: [] +configure_playbook_dir: "../ansible-distro-configure" |
