Files
raspiblitz/home.admin/setup.scripts/dialogSystemCopy.sh
/rootzoll 39fd3344ce #4324 New Drive Layout: Boot NVMe, Proxmox & OldLaptop (#4997)
Big refactor based on #4324 introducing a new drive layout - adding optimizations for Proxmox and old laptop drive layout . Also making it possible to boot from NVMe. Replacing blitz.datadrive.sh with blitz.data.sh - icluding the possibility to migrate an old ssd/nvme to a bigger one (copying complete data and blockchain). Lots of smaller changes.
2025-05-15 13:04:22 +02:00

12 lines
408 B
Bash

#!/bin/bash
whiptail --title " BOOT FROM SSD/NVME " --yes-button "NO" --no-button "YES - BOOT SSD/NVME" --yesno "Your system allows to BOOT FROM SSD/NVME - which provides better performance but is still experimental.\n\nDo you want to copy RaspiBlitz system to SSD/NVME and boot from it? (optional)" 11 65
if [ "$?" == "0" ]; then
echo "# 1 --> No"
exit 1
else
echo "# 0 --> Yes"
exit 0
fi