]> granicus.if.org Git - zfs/commitdiff
etc/init.d/zfs-functions.in: remove arch warning
authorGeorgy Yakovlev <168902+gyakovlev@users.noreply.github.com>
Thu, 29 Aug 2019 20:14:48 +0000 (12:14 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 29 Aug 2019 20:14:48 +0000 (13:14 -0700)
Remove the x86_64 warning, it's no longer the case that this is the
only supported architecture.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Closes: #9177
etc/init.d/zfs-functions.in

index 14667b4e9fd315169ecba0a9c10f6b3e9e54e22f..d65c79dcfd36052bc8932c1bd2d225bb1c3955e2 100644 (file)
@@ -294,13 +294,6 @@ checksystem()
        # Just make sure that /dev/zfs is created.
        udev_trigger
 
-       if ! [ "$(uname -m)" = "x86_64" ]; then
-               echo "Warning: You're not running 64bit. Currently native zfs in";
-               echo "         Linux is only supported and tested on 64bit.";
-               # should we break here? People doing this should know what they
-               # do, thus i'm not breaking here.
-       fi
-
        return 0
 }