diff options
author | Raphaƫl Hertzog <hertzog@debian.org> | 2013-02-21 09:04:28 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:06 +0200 |
commit | 212e5bedd3ad9f875ea9428b9befc602c3819e3f (patch) | |
tree | d1daefbbee7a7451a1ea3d59e376dbfe145e4dfa /functions | |
parent | 20d3ef51ba2dc27b07bd01c43cf690cf1a6bd030 (diff) | |
download | vyos-live-build-212e5bedd3ad9f875ea9428b9befc602c3819e3f.tar.gz vyos-live-build-212e5bedd3ad9f875ea9428b9befc602c3819e3f.zip |
Increasing oversizing factor of ext* filesystems from 5 to 6%.
At least on armel with ext4, 5% turned out to not be enough in some use
cases. With 6% the failure was gone.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/losetup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/losetup.sh b/functions/losetup.sh index 3b389c3cf..ec727f8ba 100755 --- a/functions/losetup.sh +++ b/functions/losetup.sh @@ -68,7 +68,7 @@ Calculate_partition_size () case "${FILESYSTEM}" in ext2|ext3|ext4) - PERCENT="5" + PERCENT="6" ;; *) PERCENT="3" |