Skip to content

Commit

Permalink
Change boot partition size to recommended for ESP
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtpep committed Dec 12, 2014
1 parent fa4a8ee commit 2c3cb0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ run-script umount $drive_path
disk_size=`sudo parted -s $drive_path unit MB print devices | grep -oP "(?<=^$drive_path \()\d+"`
(( $disk_size >= 2000 )) || fatal-error "The disk size is less than minimum required size of 2GB."

boot_size=150
boot_size=260
root_size=$[disk_size / 3]
max_root_size=15000
(( $root_size < $max_root_size )) || root_size=$max_root_size
Expand Down

0 comments on commit 2c3cb0e

Please sign in to comment.