aboutsummaryrefslogtreecommitdiffstats
path: root/setup-disk.in
diff options
context:
space:
mode:
authorJakub Skrzypnik <j.skrzypnik@openmailbox.orxg>2017-01-06 08:47:02 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2017-05-19 14:52:07 +0200
commitc15da3bf6ba6d7b05cac6c6182efdd4149554b82 (patch)
treee804ce36cdcb879c39a1367fc8c7ff80355dfad7 /setup-disk.in
parentbe87a08bc2200b80c068347568bea07a4fa09fb7 (diff)
downloadalpine-conf-c15da3bf6ba6d7b05cac6c6182efdd4149554b82.tar.bz2
alpine-conf-c15da3bf6ba6d7b05cac6c6182efdd4149554b82.tar.xz
setup-disk: add xfs support as boot_fs
Diffstat (limited to 'setup-disk.in')
-rw-r--r--setup-disk.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup-disk.in b/setup-disk.in
index 023974e..c4103e4 100644
--- a/setup-disk.in
+++ b/setup-disk.in
@@ -141,7 +141,7 @@ find_mount_dev() {
}
supported_boot_fs() {
- local supported="ext2 ext3 ext4 btrfs"
+ local supported="ext2 ext3 ext4 btrfs xfs"
local fs=
for fs in $supported; do
[ "$fs" = "$1" ] && return 0
@@ -941,7 +941,7 @@ usage() {
If BOOTFS, ROOTFS, VARFS are specified, then format a partition with specified
filesystem. If not specified, the default filesystem is ext4.
Supported filesystems for
- boot: ext2, ext3, ext4, btrfs
+ boot: ext2, ext3, ext4, btrfs, xfs
root: ext2, ext3, ext4, btrfs, xfs
var: ext2, ext3, ext4, btrfs, xfs
__EOF__