blob: 198f38e5f2f055f1dc7ec01b54ff5140110ba20a (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/bin/bash
#
# This file is part of util-linux.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# Test GPT Alternative-LBA and backup header update after device resize.
#
TS_TOPDIR="${0%/*}/../.."
TS_DESC="gpt-resize"
. "$TS_TOPDIR"/functions.sh
ts_init "$*"
ts_skip_nonroot
ts_check_test_command "$TS_CMD_FDISK"
ts_check_test_command "$TS_CMD_SFDISK"
ts_check_prog "dd"
ts_check_losetup
ts_device_init 10
DEVICE=$TS_LODEV
# create GPT with one partition
echo ",," | $TS_CMD_SFDISK --no-reread --no-tell-kernel --label gpt $DEVICE >> $TS_OUTPUT 2>> $TS_ERRLOG
udevadm settle
# enlarge the image
IMAGE=$($TS_CMD_LOSETUP --output BACK-FILE --noheadings $DEVICE)
dd if=/dev/zero of=${IMAGE} bs=1MiB count=10 conv=notrunc oflag=append &> /dev/null
udevadm settle
# update device size
$TS_CMD_LOSETUP --set-capacity $DEVICE
udevadm settle
ts_log_both "----- fixing after resize: -----"
# create another GPT partition on new free space (all default)
echo -e 'n\n\n\n\nw\n' | $TS_CMD_FDISK $DEVICE >> $TS_OUTPUT 2>> $TS_ERRLOG
udevadm settle
ts_log "----- list result: -----"
$TS_CMD_FDISK --list $DEVICE >> $TS_OUTPUT 2>> $TS_ERRLOG
ts_fdisk_clean $DEVICE
ts_finalize
|