mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-20 19:06:54 +01:00
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.
12 lines
408 B
Bash
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
|