#!/bin/bash ### BEGIN INIT INFO # Provides: resize2fs # Required-Start: $local_fs # Required-Stop: # Should-Start: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Resize the root filesystem # Description: Resize the root filesystem to fill the whole storage ### END INIT INFO . /lib/init/vars.sh . /lib/lsb/init-functions export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin Log=/var/log/armhwinfo.log do_expand_partition() { local rootpart=$(findmnt -n -o SOURCE /) # i.e. /dev/mmcblk0p1 local rootdevice=$(lsblk -n -o PKNAME $rootpart) # i.e. mmcblk0 local rootdevicepath="/dev/$rootdevice" # i.e. /dev/mmcblk0 # get count of partitions and their boundaries local partitions=$(parted $rootdevicepath print -sm | tee -a $Log | tail -1 | awk -F ':' '{print $1}') local partstart=$(parted $rootdevicepath unit s print -sm | tail -1 | cut -d: -f2 | sed 's/s//') # start of first partition local partend=$(parted $rootdevicepath unit s print -sm | head -3 | tail -1 | cut -d: -f3 | sed 's/s//') # end of first partition local startfrom=$(( $partend + 1 )) [[ $partitions == 1 ]] && startfrom=$partstart # check whether a resizing rule is defined. We will take this value if it's not too low. In # this case the value will be ignored and resizing to the whole card size happens. if [[ -f /root/.rootfs_resize ]]; then read RESIZE_VALUE >${Log} cat /proc/partitions >>${Log} echo -e "\nExecuting fdisk, fsck and partprobe:" >>${Log} local fdisk_version=$(fdisk --version | awk '{print $NF}' | grep -oE "^[[:digit:]].[[:digit:]]+") if [[ $partitions == 1 ]] && awk "BEGIN{exit ! ($fdisk_version >= 2.27 )}"; then # if dealing with fdisk from util-linux 2.27+ we need a workaround for just 1 partition # though it does not break anything - just prevents an "unexpected command" to fdisk # https://github.com/igorpecovnik/lib/issues/353#issuecomment-224728506 ((echo d; echo n; echo p; echo ; echo $startfrom; echo $lastsector ; echo w;) | fdisk $rootdevicepath) >>${Log} 2>&1 else ((echo d; echo $partitions; echo n; echo p; echo ; echo $startfrom; echo $lastsector ; echo w;) | fdisk $rootdevicepath) >>${Log} 2>&1 fi local s=0 partprobe $rootdevicepath >>${Log} 2>&1 || s=$? echo -e "\nNew partition table:\n" >>${Log} cat /proc/partitions >>${Log} echo -e "\nNow executing resize2fs to enlarge rootfs to the maximum:\n" >>${Log} resize2fs $rootpart >>${Log} 2>&1 # check whether reboot is necessary for resize2fs to take effect local freesize=$(( $(findmnt --target / -n -o AVAIL -b) / 1048576 )) # MiB if [[ $s != 0 || $freesize -lt 512 ]]; then touch /var/run/resize2fs-reboot echo -e "\n### [firstrun] Automated reboot needed to finish the resize procedure" >>${Log} fi } do_expand_filesystem() { local rootpart=$(findmnt -n -o SOURCE /) # i.e. /dev/mmcblk0p1 echo -e "\n### [resize2fs] Start resizing partition now\n" >> ${Log} resize2fs $rootpart >> ${Log} 2>&1 } case "$1" in start) # skip resizing if rootfs is not ext4 or if explicitly disabled if [[ $(findmnt -n -o FSTYPE /) != ext4 || -f /root/.no_rootfs_resize ]]; then systemctl disable resize2fs exit 0 fi # first stage - resize the partition [[ ! -f /var/lib/armbian/resize_second_stage ]] && do_expand_partition # second stage - resize the filesystem [[ ! -f /var/run/resize2fs-reboot ]] && do_expand_filesystem # disable itself [[ ! -f /var/run/resize2fs-reboot ]] && systemctl disable resize2fs exit 0 ;; *) echo "Usage: $0 start" exit 0 ;; esac