mirror of
https://salsa.debian.org/raspi-team/image-specs
synced 2026-05-30 06:38:09 +02:00
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
roottmp=$(lsblk -l -o MAJ:MIN,MOUNTPOINT | grep '/$')
|
|
rootpart=/dev/block/${roottmp% /}
|
|
rootdev=${rootpart%:*}:0
|
|
|
|
echo 'y\n-1s\n' | parted $rootdev resizepart 2
|
|
|
|
resize2fs $rootpart
|