summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-04-04 16:53:44 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-04-04 16:53:44 +0200
commit7f512568876ee752191e946fafe4dc9d204727e3 (patch)
treebaa5442597d4771862ce21e9f2671c1ab945af84 /scripts
parent514831972393c11fa3c2835daa0734ba247fd97e (diff)
disable huge_file
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install-rpi.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install-rpi.sh b/scripts/install-rpi.sh
index 5d282d29f..ed85cc53e 100755
--- a/scripts/install-rpi.sh
+++ b/scripts/install-rpi.sh
@@ -76,9 +76,9 @@ parted -s $1 unit cyl mkpart primary fat32 $datasize $maxsize
parted -s $1 set 1 boot on
sfdisk --change-id $1 4 88
sleep 2
-mkfs.vfat ${1}1
-mkfs.ext4 ${1}2
-mkfs.ext4 ${1}3
+mkfs.vfat ${1}1 >/dev/null
+mkfs.ext4 -q -O ^huge_file ${1}2
+mkfs.ext4 -q -O ^huge_file ${1}3
sync
sleep 2