From bc5882432b1d79f78a523af958e6d7e77d4d1050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Fri, 20 May 2022 11:48:51 -0400 Subject: [PATCH] reorder the bpool to be consistent with the rpool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We stick to two rules here: * -o options come before -O * pool-specific options are wedged in between -o and -O (e.g. compatibility=grub2) I don't know if that was a deliberate policy, I'm just trying to guess what the pattern was Signed-off-by: Antoine Beaupré Signed-off-by: Richard Laager --- docs/Getting Started/Debian/Debian Bullseye Root on ZFS.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Getting Started/Debian/Debian Bullseye Root on ZFS.rst b/docs/Getting Started/Debian/Debian Bullseye Root on ZFS.rst index 0557136..40b46ce 100644 --- a/docs/Getting Started/Debian/Debian Bullseye Root on ZFS.rst +++ b/docs/Getting Started/Debian/Debian Bullseye Root on ZFS.rst @@ -226,9 +226,9 @@ Step 2: Disk Formatting #. Create the boot pool:: zpool create \ - -o cachefile=/etc/zfs/zpool.cache \ -o ashift=12 \ -o autotrim=on -d \ + -o cachefile=/etc/zfs/zpool.cache \ -o feature@async_destroy=enabled \ -o feature@bookmarks=enabled \ -o feature@embedded_data=enabled \ @@ -242,9 +242,9 @@ Step 2: Disk Formatting -o feature@lz4_compress=enabled \ -o feature@spacemap_histogram=enabled \ -o feature@zpool_checkpoint=enabled \ + -O devices=off \ -O acltype=posixacl -O xattr=sa \ -O compression=lz4 \ - -O devices=off \ -O normalization=formD \ -O relatime=on \ -O canmount=off -O mountpoint=/boot -R /mnt \