Files
image-specs/rpi3-resizerootfs

10 lines
193 B
Plaintext
Raw Normal View History

#!/bin/sh
2017-10-08 22:18:48 +02:00
roottmp=$(lsblk -l -o MAJ:MIN,MOUNTPOINT | grep '/$')
rootpart=/dev/block/${roottmp% /}
rootdev=${rootpart%:*}:0
2017-10-08 22:18:48 +02:00
2018-07-10 22:42:06 +02:00
echo 'y\n-1s\n' | parted $rootdev resizepart 2
2017-10-08 22:18:48 +02:00
resize2fs $rootpart