blob: d42bc84e77c3b4b70b19a5322389dc8884a5074e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in
*XScale-PXA2*)
case "`uname -r`" in
2.4*)
PCIC=pxa_cs
;;
2.6*)
PCIC=pxa2xx_core
;;
esac
;;
*StrongARM-1100* | *StrongARM-1110*)
PCIC=sa1100_cs
;;
*)
echo "Unable to determine PCIC value for this CPU"
exit 1
;;
esac
if grep -q iPAQ /proc/cpuinfo; then
case `module_id` in
"HP iPAQ H2200")
;;
*)
PCIC_EXTRA=h3600_generic_sleeve
;;
esac
fi
|