Skip to content

Commit

Permalink
v8.25
Browse files Browse the repository at this point in the history
- dietpi-rpi-firmware-migration | Require an actual /boot mount. The initial idea was to allow rerunning this script when it failed after the /boot mount has been removed already. But this would fail later anyway. For now, as long as there is no larger number of such failures which we cannot avoid, require the /boot mount to be present, to assure everything is as expected, and in case handle and investigate individual failures of testers.
  • Loading branch information
MichaIng committed Dec 14, 2023
1 parent 5169082 commit d91d2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .meta/dietpi-rpi-firmware-migration
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readonly G_PROGRAM_NAME='dietpi-rpi-firmware-migration'
G_CHECK_ROOT_USER
G_CHECK_ROOTFS_RW
G_CHECK_FREESPACE / 200
(( $(findmnt -nbo SIZE -T /boot) > 128000000 )) || { G_DIETPI-NOTIFY 1 'You can run this script on a system with at least 128 MiB boot partition only!'; exit 1; }
(( $(findmnt -nbo SIZE /boot) > 128000000 )) || { G_DIETPI-NOTIFY 1 'You can run this script on a system with at least 128 MiB boot partition only!'; exit 1; }
G_INIT
# Import DietPi-Globals ---------------------------------------------------------------

Expand Down

0 comments on commit d91d2dd

Please sign in to comment.