]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
95dasd: use 'uname -m' instead of 'arch'
authorHarald Hoyer <harald@redhat.com>
Tue, 29 Sep 2009 12:48:56 +0000 (14:48 +0200)
committerHarald Hoyer <harald@redhat.com>
Tue, 29 Sep 2009 15:10:22 +0000 (17:10 +0200)
modules.d/95dasd/check

index bfc4052d20f6b8327e2fcf7fe835da772c4b34db..a26196cf36bb611875c6ec5b821b690c73e2fc83 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/bash
-arch=$(arch)
+arch=$(uname -m)
 [ "$arch" = "s390" -o "$arch" = "s390x" ] || exit 1 
 
 exit 0