diff options
Diffstat (limited to 'hardinfo2/configure')
-rwxr-xr-x | hardinfo2/configure | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/hardinfo2/configure b/hardinfo2/configure index e1829be1..6d739d44 100755 --- a/hardinfo2/configure +++ b/hardinfo2/configure @@ -76,15 +76,9 @@ case $PROC in s390) ln -sf linux/s390 arch/this ARCH="ARCH_S390" ;; - *) - # uname -m on m68k doesn't return anything useful :/ - grep "680?0" /proc/cpuinfo > /dev/null - if [ "$?" == "0" ]; then - ln -sf linux/m68k arch/this - ARCH="ARCH_m68k" - fi - - ;; + m68k) + ln -sf linux/m68k arch/this + ARCH="ARCH_m68k" ;; esac if [ "x$ARCH" == "x" ]; then |