Skip to content

Commit

Permalink
nc-format-USB: speed up ext4 creation with lazy initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
nacho committed Sep 30, 2017
1 parent c2abfaa commit cdf1822
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion etc/nextcloudpi-config.d/nc-format-USB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() { :; }
Expand Down

0 comments on commit cdf1822

Please sign in to comment.