aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/powervr-drivers/libgles-omap3/cputype
blob: e34a5f22d374a53a288a2941ab6d799dc3fa4428 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
. /etc/init.d/functions

if [ "$(machine_id)" = "ti8168evm" ] ; then
	echo TI816x
else
	devmem2 0x4800244c | \
	grep 'Value at address' | \
	sed -e 's/.*): //' | \
	sed -e 's/0x5C00/OMAP3503/' -e 's/0x1C00/OMAP3515/' -e 's/0x4C00/OMAP3525/' -e 's/0xC00/OMAP3530/'
fi