From cfcb53524bff5d4c5fa479a5d22224b186242131 Mon Sep 17 00:00:00 2001 From: nachoparker Date: Sat, 30 Sep 2017 14:57:59 +0200 Subject: nc-format-USB: speed up ext4 creation with lazy initialization --- changelog.md | 8 ++++++-- etc/nextcloudpi-config.d/nc-format-USB.sh | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 8b19eb02..41778855 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,11 @@ -[v0.31.2](https://github.com/nextcloud/nextcloudpi/commit/ac8af38) (2017-09-30) ncp-web: remove http2 push headers. They dont play well with pwauth (#224) +[v0.31.4](https://github.com/nextcloud/nextcloudpi/commit/ebd1fc1) (2017-09-30) nc-format-USB: speed up ext4 creation with lazy initialization -[v0.31.1](https://github.com/nextcloud/nextcloudpi/commit/789850c) (2017-09-28) nc-static-IP: fix occ path +[v0.31.3 ](https://github.com/nextcloud/nextcloudpi/commit/c2abfaa) (2017-09-30) letsencrypt: fix uppercase domains cert path (Closes #229) + +[v0.31.2 ](https://github.com/nextcloud/nextcloudpi/commit/e3ef973) (2017-09-30) ncp-web: remove http2 push headers. They dont play well with pwauth (#224) + +[v0.31.1 ](https://github.com/nextcloud/nextcloudpi/commit/789850c) (2017-09-28) nc-static-IP: fix occ path [v0.31.0](https://github.com/nextcloud/nextcloudpi/commit/a9f90b9) (2017-09-27) wizard: connect backend with frontend. Modifications for first release diff --git a/etc/nextcloudpi-config.d/nc-format-USB.sh b/etc/nextcloudpi-config.d/nc-format-USB.sh index 16b2bbe0..60baab89 100644 --- a/etc/nextcloudpi-config.d/nc-format-USB.sh +++ b/etc/nextcloudpi-config.d/nc-format-USB.sh @@ -47,7 +47,7 @@ configure() wipefs -a -f /dev/"$NAME" || return 1 printf 'o\nn\np\n1\n\n\nw\n' | sudo fdisk /dev/"$NAME" || return 1 - mkfs.ext4 -q -F /dev/"${NAME}1" -L "$LABEL_" + mkfs.ext4 -q -E lazy_itable_init=0,lazy_journal_init=0 -F /dev/"${NAME}1" -L "$LABEL_" } install() { :; } -- cgit v1.2.3