blob: 2b91cb0c27fa6b9028f1a8bdaa4bbe78d4d5c864 [file] [log] [blame]
sewardjf34eb492011-04-15 11:57:05 +00001#!/bin/sh
2
3# We use this script to check whether or not the processor supports Power ISA 2.06.
4
5LD_SHOW_AUXV=1 /bin/true | grep arch_2_06 > /dev/null 2>&1
6if [ "$?" -ne "0" ]; then
7 exit 1
8else
9 exit 0
10fi
11