aboutsummaryrefslogtreecommitdiffstats
path: root/tools/resize_root.sh
blob: 3686c1a89b3b8579ebed041386366fa034546749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

DEVICE="/dev/mmcblk0"
ROOT_PARTITION="${DEVICE}p1"
ROOT_PARTITION="1"

#Check dependency
hash growpart
if [ ${?} -ne 0 ]; then
    echo "install cloud-utils-growpart first. Hint : urpmi cloud-utils-growpart"
    exit 1
fi

#Check the partition :
e2fsck -f ${ROOT_PARTITION}

#Change the size : BUG: app doesn't support "octet".
LC_ALL=C growpart ${DEVICE} ${ROOT_PARTITION}

#Resize the partition with the new size :
resize2fs ${ROOT_PARTITION} 

#Sync (just to be sure)
sync

#Quit
exit 0