From: Ruediger Meier Date: Wed, 6 Apr 2016 07:16:10 +0000 (+0200) Subject: tests: fix fdisk/bsd for hppa X-Git-Tag: v2.28~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b7be556e553cdcef6213ead6340832c306011ed;p=thirdparty%2Futil-linux.git tests: fix fdisk/bsd for hppa Signed-off-by: Ruediger Meier --- diff --git a/tests/ts/fdisk/bsd b/tests/ts/fdisk/bsd index 8d2e762a7d..19e999b16f 100755 --- a/tests/ts/fdisk/bsd +++ b/tests/ts/fdisk/bsd @@ -46,7 +46,8 @@ BYTE_ORDER=$($TS_HELPER_SYSINFO byte-order) # and also on arch-specific offset (see include/pt-bsd.h) ARCH=$(uname -m) case $ARCH in - *ppc* | *alpha* | *ia64*) + # see include/pt-bsd.h + *alpha* | *ppc* | *ia64* | *hppa* ) BSD_LABELSECTOR=0 BSD_LABELOFFSET=64 ;;